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