FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Struktura CommentUserMention objekta"
interface CommentUserMention { /** ID korisnika. Za SSO korisnike, ovo će imati prefiks vašeg tenant id-a. **/ id: string /** Konačni tekst @mention oznake, uključujući simbol @. **/ tag: string /** Originalni tekst @mention oznake, uključujući simbol @. **/ rawTag: string /** Koje vrste korisnik je bio označen. user = FastComments.com račun. sso = SSOUser. **/ type: 'user'|'sso' /** Ako se korisnik odjavi od obavijesti, ovo će i dalje biti postavljeno na true. **/ sent: boolean }
Result