FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Das Webhook Mentions-Objekt"
interface CommentUserMention { /** Die nutzer-id. Bei SSO-Benutzern wird Ihre tenant id vorangestellt. **/ id: string /** Der finale @mention-Tag-Text, inklusive des @-Symbols. **/ tag: string /** Der ursprüngliche @mention-Tag-Text, inklusive des @-Symbols. **/ rawTag: string /** Welche Art von Benutzer getaggt wurde. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** Wenn der Benutzer Benachrichtigungen abbestellt, wird dies trotzdem auf true gesetzt. **/ sent: boolean }
Result