id | String | Unique ID of the comment. | |
text | String | Text content of the comment. | |
level | Int | Level is 0 for comment and 1 for reply. | |
isLiked | Boolean | true if the user has liked the comment, false otherwise. | |
isEdited | Boolean | true if the comment was edited, false otherwise. | |
userId | String | Unique ID of comment creator. | |
likesCount | Int | Number of users that liked the comment. | |
commentsCount | Int | Number of users that replied on the comment. | |
replies | List<Comment> | List of replies on the comment. | ✔ |
parentComment | Comment | Parent comment of the reply. | ✔ |
menuItems | List<MenuItem> | List of actions as menu items on the comment. | |
createdAt | Long | Timestamp when the comment was created. | |
updatedAt | Long | Timestamp when the comment was last updated. | |
uuid | String | Unique ID of comment creator. | |
tempId | String | Temporary ID of comment. | ✔ |