跳到主要内容

事件_批注数据

批注数据。

属性

名称类型说明
Replies事件_批注数据[]包含批注回复的数组,每个回复均表示为批注数据对象。
Solvedboolean指定该批注是否已解决:已解决(true)或未解决(false)。
Textstring批注文本。
Timestring批注发布的时间(以毫秒为单位)。
UserNamestring批注作者。

类型

Object(对象)

示例

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]);