FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Το αντικείμενο Mentions του Webhook"
interface CommentUserMention { /** Το id του χρήστη. Για χρήστες SSO, θα έχει προθεματισμένο το tenant id σας. **/ id: string /** Το τελικό κείμενο του @mention tag, συμπεριλαμβανομένου του συμβόλου @. **/ tag: string /** Το αρχικό κείμενο του @mention tag, συμπεριλαμβανομένου του συμβόλου @. **/ rawTag: string /** Τι τύπος χρήστη ετικετοποιήθηκε. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** Αν ο χρήστης επιλέξει να μην λαμβάνει ειδοποιήσεις, αυτό θα παραμείνει ρυθμισμένο σε true. **/ sent: boolean }
Result