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