FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "אובייקט אזכורי התגובה"
interface CommentUserMention { /** מזהה המשתמש. עבור משתמשי SSO, יהיה עם קידומת של מזהה ה-tenant שלכם. **/ id: string /** הטקסט הסופי של תגית ה-@mention, כולל הסימן @. **/ tag: string /** הטקסט המקורי של ה-@mention, כולל הסימן @. **/ rawTag: string /** סוג המשתמש שהוזכר. user = FastComments.com account. sso = SSOUser. **/ type: 'user'|'sso' /** גם אם המשתמש מבטל קבלת התראות, ערך זה עדיין יהיה true. **/ sent: boolean }
Result