tencentcloud-sdk-nodejs-lke 4.1.115 → 4.1.118
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1593,6 +1593,10 @@ export interface ListUnsatisfiedReplyRequest {
|
|
|
1593
1593
|
* 错误类型检索
|
|
1594
1594
|
*/
|
|
1595
1595
|
Reasons?: Array<string>;
|
|
1596
|
+
/**
|
|
1597
|
+
* 操作状态 0-全部 1-待处理 2-已处理【包括答案纠错,拒答,忽略】
|
|
1598
|
+
*/
|
|
1599
|
+
Status?: number;
|
|
1596
1600
|
}
|
|
1597
1601
|
/**
|
|
1598
1602
|
* DeleteQA请求参数结构体
|
|
@@ -4540,7 +4544,7 @@ export interface UnsatisfiedReply {
|
|
|
4540
4544
|
*/
|
|
4541
4545
|
Question?: string;
|
|
4542
4546
|
/**
|
|
4543
|
-
*
|
|
4547
|
+
* 问题回复
|
|
4544
4548
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4545
4549
|
*/
|
|
4546
4550
|
Answer?: string;
|
|
@@ -4549,6 +4553,23 @@ export interface UnsatisfiedReply {
|
|
|
4549
4553
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4550
4554
|
*/
|
|
4551
4555
|
Reasons?: Array<string>;
|
|
4556
|
+
/**
|
|
4557
|
+
* 处理状态,0:待处理,1:已拒答,2:已忽略,3:已纠错
|
|
4558
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4559
|
+
*/
|
|
4560
|
+
Status?: number;
|
|
4561
|
+
/**
|
|
4562
|
+
* 创建时间,秒级时间戳
|
|
4563
|
+
*/
|
|
4564
|
+
CreateTime?: string;
|
|
4565
|
+
/**
|
|
4566
|
+
* 更新时间,秒级时间戳
|
|
4567
|
+
*/
|
|
4568
|
+
UpdateTime?: string;
|
|
4569
|
+
/**
|
|
4570
|
+
* 操作人
|
|
4571
|
+
*/
|
|
4572
|
+
Operator?: string;
|
|
4552
4573
|
}
|
|
4553
4574
|
/**
|
|
4554
4575
|
* DescribeUnsatisfiedReplyContext返回参数结构体
|
|
@@ -4889,10 +4910,10 @@ export interface RateMsgRecordRequest {
|
|
|
4889
4910
|
*/
|
|
4890
4911
|
RecordId: string;
|
|
4891
4912
|
/**
|
|
4892
|
-
* 1: 点赞;
|
|
4913
|
+
* 1: 点赞; 2: 点踩;
|
|
4893
4914
|
注:
|
|
4894
|
-
1) 评测端不支持点赞、点踩
|
|
4895
|
-
2) 消息回复类型为欢迎语、并发超限、实时文档,不支持点赞、点踩
|
|
4915
|
+
(1) 评测端不支持点赞、点踩
|
|
4916
|
+
(2) 消息回复类型为欢迎语、并发超限、实时文档,不支持点赞、点踩
|
|
4896
4917
|
*/
|
|
4897
4918
|
Score: number;
|
|
4898
4919
|
/**
|
|
@@ -6319,7 +6340,7 @@ export interface RejectedQuestion {
|
|
|
6319
6340
|
*/
|
|
6320
6341
|
Question?: string;
|
|
6321
6342
|
/**
|
|
6322
|
-
*
|
|
6343
|
+
* 发布状态(1 待发布 2 发布中 3 已发布 4 发布失败)
|
|
6323
6344
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6324
6345
|
*/
|
|
6325
6346
|
Status?: number;
|
|
@@ -6329,7 +6350,7 @@ export interface RejectedQuestion {
|
|
|
6329
6350
|
*/
|
|
6330
6351
|
StatusDesc?: string;
|
|
6331
6352
|
/**
|
|
6332
|
-
*
|
|
6353
|
+
* 更新时间, 秒级时间戳
|
|
6333
6354
|
|
|
6334
6355
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6335
6356
|
*/
|
|
@@ -6346,6 +6367,11 @@ export interface RejectedQuestion {
|
|
|
6346
6367
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6347
6368
|
*/
|
|
6348
6369
|
IsAllowDelete?: boolean;
|
|
6370
|
+
/**
|
|
6371
|
+
* 操作人
|
|
6372
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6373
|
+
*/
|
|
6374
|
+
Operator?: string;
|
|
6349
6375
|
}
|
|
6350
6376
|
/**
|
|
6351
6377
|
* 聊天详情Refer
|