tencentcloud-sdk-nodejs-cii 4.0.388 → 4.0.431

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.
@@ -19,215 +19,224 @@
19
19
  * DescribeStructCompareData返回参数结构体
20
20
  */
21
21
  export interface DescribeStructCompareDataResponse {
22
- /**
23
- * 保单号
24
- */
25
- PolicyId?: string
26
-
27
- /**
28
- * 结构化任务ID
29
- */
30
- TaskId?: string
31
-
32
- /**
33
- * 客户号
34
- */
35
- CustomerId?: string
36
-
37
- /**
38
- * 客户姓名
39
- */
40
- CustomerName?: string
41
-
42
- /**
43
- * 复核时间
44
- */
45
- ReviewTime?: string
46
-
47
- /**
48
- * 算法识别结果
49
- */
50
- MachineResult?: string
51
-
52
- /**
53
- * 人工复核结果
54
- */
55
- ManualResult?: string
56
-
57
- /**
58
- * 结构化对比指标数据
59
- */
60
- Metrics?: CompareMetricsData
61
-
62
- /**
63
- * 新增项
64
- */
65
- NewItems?: string
66
-
67
- /**
68
- * 修改项
69
- */
70
- ModifyItems?: string
71
-
72
- /**
73
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
74
- */
75
- RequestId?: string
22
+
23
+ /**
24
+ * 保单号
25
+ */
26
+ PolicyId?: string;
27
+
28
+ /**
29
+ * 结构化任务ID
30
+ */
31
+ TaskId?: string;
32
+
33
+ /**
34
+ * 客户号
35
+ */
36
+ CustomerId?: string;
37
+
38
+ /**
39
+ * 客户姓名
40
+ */
41
+ CustomerName?: string;
42
+
43
+ /**
44
+ * 复核时间
45
+ */
46
+ ReviewTime?: string;
47
+
48
+ /**
49
+ * 算法识别结果
50
+ */
51
+ MachineResult?: string;
52
+
53
+ /**
54
+ * 人工复核结果
55
+ */
56
+ ManualResult?: string;
57
+
58
+ /**
59
+ * 结构化对比指标数据
60
+ */
61
+ Metrics?: CompareMetricsData;
62
+
63
+ /**
64
+ * 新增项
65
+ */
66
+ NewItems?: string;
67
+
68
+ /**
69
+ * 修改项
70
+ */
71
+ ModifyItems?: string;
72
+
73
+ /**
74
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
75
+ */
76
+ RequestId?: string;
76
77
  }
77
78
 
78
79
  /**
79
80
  * DescribeStructureTaskResult请求参数结构体
80
81
  */
81
82
  export interface DescribeStructureTaskResultRequest {
82
- /**
83
- * 结构化任务ID
84
- */
85
- TaskId: string
83
+
84
+ /**
85
+ * 结构化任务ID
86
+ */
87
+ TaskId: string;
86
88
  }
87
89
 
88
90
  /**
89
91
  * CreateStructureTask请求参数结构体
90
92
  */
91
93
  export interface CreateStructureTaskRequest {
92
- /**
93
- * 保单号
94
- */
95
- PolicyId: string
96
-
97
- /**
98
- * 客户号
99
- */
100
- CustomerId: string
101
-
102
- /**
103
- * 客户姓名
104
- */
105
- CustomerName: string
106
-
107
- /**
108
- * 文件类型,目前只支持体检报告类型,对应的值为:HealthReport
109
- */
110
- TaskType: string
111
-
112
- /**
113
- * 报告年份
114
- */
115
- Year: string
116
-
117
- /**
118
- * 报告文件上传的地址列表,需按顺序排列。如果使用ImageList参数,置为空数组即可
119
- */
120
- FileList: Array<string>
121
-
122
- /**
94
+
95
+ /**
96
+ * 保单号
97
+ */
98
+ PolicyId: string;
99
+
100
+ /**
101
+ * 客户号
102
+ */
103
+ CustomerId: string;
104
+
105
+ /**
106
+ * 客户姓名
107
+ */
108
+ CustomerName: string;
109
+
110
+ /**
111
+ * 文件类型,目前只支持体检报告类型,对应的值为:HealthReport
112
+ */
113
+ TaskType: string;
114
+
115
+ /**
116
+ * 报告年份
117
+ */
118
+ Year: string;
119
+
120
+ /**
121
+ * 报告文件上传的地址列表,需按顺序排列。如果使用ImageList参数,置为空数组即可
122
+ */
123
+ FileList: Array<string>;
124
+
125
+ /**
123
126
  * 险种,如果是体检报告类型,此参数是必填,类型说明如下:
124
127
  CriticalDiseaseInsurance:重疾险
125
128
  LifeInsurance:寿险
126
129
  AccidentInsurance:意外险
127
130
  */
128
- InsuranceTypes?: Array<string>
129
-
130
- /**
131
- * 报告上传的图片内容数组,图片内容采用base64编码,需按顺序排列
132
- */
133
- ImageList?: Array<string>
131
+ InsuranceTypes?: Array<string>;
132
+
133
+ /**
134
+ * 报告上传的图片内容数组,图片内容采用base64编码,需按顺序排列
135
+ */
136
+ ImageList?: Array<string>;
134
137
  }
135
138
 
136
139
  /**
137
140
  * 结构化对比指标(准确率/召回率)数据
138
141
  */
139
142
  export interface CompareMetricsData {
140
- /**
141
- * 短文准确率
142
- */
143
- ShortStructAccuracy: string
144
-
145
- /**
146
- * 短文召回率
147
- */
148
- ShortStructRecall: string
149
-
150
- /**
151
- * 长文结构化准确率
152
- */
153
- LongStructAccuracy: string
154
-
155
- /**
156
- * 长文结构化召回率
157
- */
158
- LongStructRecall: string
159
-
160
- /**
161
- * 长文提取准确率
162
- */
163
- LongContentAccuracy: string
164
-
165
- /**
166
- * 长文提取召回率
167
- */
168
- LongContentRecall: string
143
+
144
+ /**
145
+ * 短文准确率
146
+ */
147
+ ShortStructAccuracy: string;
148
+
149
+ /**
150
+ * 短文召回率
151
+ */
152
+ ShortStructRecall: string;
153
+
154
+ /**
155
+ * 长文结构化准确率
156
+ */
157
+ LongStructAccuracy: string;
158
+
159
+ /**
160
+ * 长文结构化召回率
161
+ */
162
+ LongStructRecall: string;
163
+
164
+ /**
165
+ * 长文提取准确率
166
+ */
167
+ LongContentAccuracy: string;
168
+
169
+ /**
170
+ * 长文提取召回率
171
+ */
172
+ LongContentRecall: string;
169
173
  }
170
174
 
171
175
  /**
172
176
  * 用于返回结构化任务结果
173
177
  */
174
178
  export interface ResultObject {
175
- /**
176
- * 图片质量分
177
- */
178
- Quality: number
179
-
180
- /**
181
- * 由结构化算法结构化json转换的字符串,具体协议参见算法结构化结果协议
182
- */
183
- StructureResult: string
179
+
180
+ /**
181
+ * 图片质量分
182
+ */
183
+ Quality: number;
184
+
185
+ /**
186
+ * 由结构化算法结构化json转换的字符串,具体协议参见算法结构化结果协议
187
+ */
188
+ StructureResult: string;
184
189
  }
185
190
 
186
191
  /**
187
192
  * DescribeStructCompareData请求参数结构体
188
193
  */
189
194
  export interface DescribeStructCompareDataRequest {
190
- /**
191
- * 结构化任务ID
192
- */
193
- TaskId: string
195
+
196
+ /**
197
+ * 结构化任务ID
198
+ */
199
+ TaskId: string;
194
200
  }
195
201
 
196
202
  /**
197
203
  * CreateStructureTask返回参数结构体
198
204
  */
199
205
  export interface CreateStructureTaskResponse {
200
- /**
201
- * 本次结构化任务的ID
202
- */
203
- TaskId: string
204
-
205
- /**
206
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
207
- */
208
- RequestId?: string
206
+
207
+ /**
208
+ * 本次结构化任务的ID
209
+ */
210
+ TaskId: string;
211
+
212
+ /**
213
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
214
+ */
215
+ RequestId?: string;
209
216
  }
210
217
 
211
218
  /**
212
219
  * DescribeStructureTaskResult返回参数结构体
213
220
  */
214
221
  export interface DescribeStructureTaskResultResponse {
215
- /**
222
+
223
+ /**
216
224
  * 结果状态:
217
225
  0:返回成功
218
226
  1:结果未生成
219
227
  2:结果生成失败
220
228
  */
221
- Status: number
222
-
223
- /**
229
+ Status: number;
230
+
231
+ /**
224
232
  * 结构化识别结果数组,每个数组元素对应一个图片的结构化结果,顺序和输入参数的ImageList或FileList对应。
225
233
  注意:此字段可能返回 null,表示取不到有效值。
226
234
  */
227
- Results: Array<ResultObject>
228
-
229
- /**
230
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
231
- */
232
- RequestId?: string
235
+ Results: Array<ResultObject>;
236
+
237
+ /**
238
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
239
+ */
240
+ RequestId?: string;
233
241
  }
242
+
@@ -1,6 +1,6 @@
1
1
  import * as Models from "./cii_models"
2
2
  import { Client } from "./cii_client"
3
3
  export const v20201210 = {
4
- Client: Client,
5
- Models: Models,
6
- }
4
+ Client: Client,
5
+ Models: Models
6
+ }