FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "Об'єкт згадок вебхука"
interface CommentUserMention { /** Id користувача. Для SSO-користувачів тут буде префікс з id орендаря. **/ id: string /** Остаточний текст @mention тегу, включаючи символ @. **/ tag: string /** Початковий текст @mention тегу, включаючи символ @. **/ rawTag: string /** Який тип користувача було зазначено. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** Якщо користувач відмовився від сповіщень, це все одно буде встановлено в true. **/ sent: boolean }
Result