Skip to main content

Event_CommentData

The comment data.

Properties

NameTypeDescription
RepliesEvent_CommentData[]An array containing the comment replies represented as the CommentData object.
SolvedbooleanSpecifies if the comment is resolved (true) or not (false).
TextstringThe comment text.
TimestringThe time when the comment was posted (in milliseconds).
UserNamestringThe comment author.

Type

Object

Example

let commentData = {
"UserName": "John Smith",
"Text": "comment",
"Time": "1662737941471",
"Solved": true,
"Replies": [
{
"UserName": "Mark Potato",
"Text": "reply 1",
"Time": "1662740895892",
"Solved": false
}
]
};
window.Asc.plugin.executeMethod ("AddComment", [commentData]);