FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Webhook メンションオブジェクト"
interface CommentUserMention { /** ユーザーID。SSOユーザーの場合、テナントIDがプレフィックスされる。 **/ id: string /** 最終的な@mentionタグのテキスト(@記号を含む)。 **/ tag: string /** 元の@mentionタグのテキスト(@記号を含む)。 **/ rawTag: string /** タグ付けされたユーザーのタイプ。user = FastComments.comアカウント、sso = SSOUser。 **/ type: 'user'|'sso' /** ユーザーが通知をオプトアウトしても、これはtrueのままになる。 **/ sent: boolean }
Result