FastComments.com
Here you can edit and run the code snippet from our documentation.
Example Code Snippet "댓글 해시태그 객체"
interface CommentHashTag { /** 해시태그 ID. **/ id: string /** 최종 #해시태그 텍스트(# 기호 포함). **/ tag: string /** 해시태그에 맞춤 URL이 연결되어 있다면 이 값이 정의됩니다. **/ url?: string /** 댓글이 업데이트될 때 댓글 텍스트에 존재하지 않더라도 해시태그를 유지(retain)해야 하는지 여부. 댓글 텍스트를 변경하지 않고 댓글에 태그를 추가할 때 유용합니다. **/ retain?: boolean }
Result