You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.8 KiB
54 lines
1.8 KiB
```json title="CommentVo"
|
|
{
|
|
"metadata": {
|
|
"name": "string", // 唯一标识
|
|
"labels": {
|
|
"additionalProp1": "string"
|
|
},
|
|
"annotations": {
|
|
"additionalProp1": "string"
|
|
},
|
|
"creationTimestamp": "2022-11-20T12:16:19.788Z" // 创建时间
|
|
},
|
|
"spec": {
|
|
"raw": "string", // 原始文本,一般用于给编辑器使用
|
|
"content": "string", // 最终渲染的文本
|
|
"owner": { // 创建者关联
|
|
"kind": "string",
|
|
"name": "string",
|
|
"displayName": "string",
|
|
"annotations": {
|
|
"additionalProp1": "string"
|
|
}
|
|
},
|
|
"userAgent": "string", // 评论者 UserAgent 信息
|
|
"ipAddress": "string", // 评论者 IP 地址
|
|
"priority": 0, // 排序字段
|
|
"top": false, // 是否置顶
|
|
"allowNotification": true, // 是否允许通知
|
|
"approved": false,
|
|
"hidden": false,
|
|
"subjectRef": { // 引用关联,比如文章、自定义页面
|
|
"group": "string",
|
|
"version": "string",
|
|
"kind": "string",
|
|
"name": "string"
|
|
},
|
|
"lastReadTime": "2022-11-20T12:16:19.788Z"
|
|
},
|
|
"status": {
|
|
"lastReplyTime": "2022-11-20T12:16:19.788Z",
|
|
"replyCount": 0, // 回复数量
|
|
"unreadReplyCount": 0,
|
|
"hasNewReply": true // 是否有新回复
|
|
},
|
|
"owner": { // 创建者信息
|
|
"kind": "string",
|
|
"name": "string",
|
|
"displayName": "string",
|
|
"avatar": "string",
|
|
"email": "string"
|
|
}
|
|
}
|
|
```
|