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