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