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 = SSOUser。 **/ type: 'user'|'sso' /** ユーザーが通知をオプトアウトしている場合でも、これが true に設定されます。 **/ sent: boolean }
Result