FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "댓글 멘션 객체"
interface CommentUserMention { /** 사용자 ID. SSO 사용자인 경우 테넌트 ID가 접두사로 붙습니다. **/ id: string /** 최종 @멘션 태그 텍스트( @ 기호 포함). **/ tag: string /** 원본 @멘션 태그 텍스트( @ 기호 포함). **/ rawTag: string /** 어떤 유형의 사용자가 태그되었는지. user = FastComments.com 계정, sso = SSO 사용자. **/ type: 'user'|'sso' /** 사용자가 알림 수신을 거부한 경우에도 이 값은 true로 설정됩니다. **/ sent: boolean }
Result