FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Het Webhook Mentions-object"
interface CommentUserMention { /** De gebruikers-id. Voor SSO-gebruikers wordt hier uw tenant-id aan voorafgegaan. **/ id: string /** De uiteindelijke @mention-tagtekst, inclusief het @-symbool. **/ tag: string /** De oorspronkelijke @mention-tagtekst, inclusief het @-symbool. **/ rawTag: string /** Welk type gebruiker werd genoemd. user = FastComments.com-account. sso = SSOUser. **/ type: 'user'|'sso' /** Als de gebruiker zich afmeldt voor meldingen, blijft dit toch op true staan. **/ sent: boolean }
Result