FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Oggetto delle Menzioni del Commento"
interface CommentUserMention { /** L'id utente. Per gli utenti SSO, questo avrà prefissato il tuo id 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 /** Che tipo di utente è stato 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