FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "El objeto Webhook Mentions"
interface CommentUserMention { /** El id de usuario. Para usuarios SSO, tendrá el id del inquilino como prefijo. **/ id: string /** El texto final de la etiqueta @mention, incluyendo el símbolo @. **/ tag: string /** El texto original de la etiqueta @mention, incluyendo el símbolo @. **/ rawTag: string /** Qué tipo de usuario fue etiquetado. user = cuenta de FastComments.com. sso = SSOUser. **/ type: 'user'|'sso' /** Si el usuario opta por no recibir notificaciones, esto seguirá siendo true. **/ sent: boolean }
Result