FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Объект упоминаний Webhook"
interface CommentUserMention { /** The user id. For SSO users, this will have your tenant id prefixed. **/ id: string /** Финальный текст тега @mention, включая символ @. **/ tag: string /** Исходный текст тега @mention, включая символ @. **/ rawTag: string /** What type of user was tagged. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** Даже если пользователь отказался от уведомлений, это поле всё равно будет установлено в true. **/ sent: boolean }
Result