FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Webhook 멘션 객체"
interface CommentUserMention { /** 사용자 id. SSO 사용자일 경우 tenant id가 접두사로 붙습니다. **/ id: string /** @ 심볼을 포함한 최종 @mention 태그 텍스트. **/ tag: string /** @ 심볼을 포함한 원본 @mention 태그 텍스트. **/ rawTag: string /** 태그된 사용자 유형. user = FastComments.com 계정, sso = SSOUser. **/ type: 'user'|'sso' /** 사용자가 알림 수신을 거부했더라도, 이 값은 여전히 true로 설정됩니다. **/ sent: boolean }
Result