FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Oggetto Mention Utente del Commento"
interface CommentUserMention { /** L'id utente. Per gli utenti SSO, questo avrà il prefisso dell'id del tuo tenant. **/ id: string /** Il testo finale del tag @mention, incluso il simbolo @. **/ tag: string /** Il testo originale del tag @mention, incluso il simbolo @. **/ rawTag: string /** Il tipo di utente taggato. user = account FastComments.com. sso = SSOUser. **/ type: 'user'|'sso' /** Se l'utente rinuncia alle notifiche, questo sarà comunque impostato su true. **/ sent: boolean }
Result