tencentcloud-sdk-nodejs-essbasic 4.0.259 → 4.0.263
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/CHANGELOG.md +807 -116
- package/SERVICE_CHANGELOG.md +68052 -0
- package/package.json +1 -1
- package/products.md +51 -50
- package/src/services/essbasic/v20210526/essbasic_client.ts +72 -17
- package/src/services/essbasic/v20210526/essbasic_models.ts +495 -162
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +31 -5
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +38 -6
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +415 -135
|
@@ -63,6 +63,10 @@ export interface FlowApproverInfo {
|
|
|
63
63
|
* 用户侧第三方id
|
|
64
64
|
*/
|
|
65
65
|
OpenId?: string;
|
|
66
|
+
/**
|
|
67
|
+
* 合同的强制预览时间:3~300s,未指定则按合同页数计算
|
|
68
|
+
*/
|
|
69
|
+
PreReadTime?: number;
|
|
66
70
|
}
|
|
67
71
|
/**
|
|
68
72
|
* PrepareFlows返回参数结构体
|
|
@@ -77,6 +81,35 @@ export interface PrepareFlowsResponse {
|
|
|
77
81
|
*/
|
|
78
82
|
RequestId?: string;
|
|
79
83
|
}
|
|
84
|
+
/**
|
|
85
|
+
* 合作企业经办人列表信息
|
|
86
|
+
*/
|
|
87
|
+
export interface ProxyOrganizationOperator {
|
|
88
|
+
/**
|
|
89
|
+
* 经办人ID(渠道颁发)
|
|
90
|
+
*/
|
|
91
|
+
Id: string;
|
|
92
|
+
/**
|
|
93
|
+
* 经办人姓名
|
|
94
|
+
*/
|
|
95
|
+
Name?: string;
|
|
96
|
+
/**
|
|
97
|
+
* 经办人身份证件类型
|
|
98
|
+
用户证件类型:默认ID_CARD
|
|
99
|
+
1. ID_CARD - 居民身份证
|
|
100
|
+
2. HOUSEHOLD_REGISTER - 户口本
|
|
101
|
+
3. TEMP_ID_CARD - 临时居民身份证
|
|
102
|
+
*/
|
|
103
|
+
IdCardType?: string;
|
|
104
|
+
/**
|
|
105
|
+
* 经办人身份证号
|
|
106
|
+
*/
|
|
107
|
+
IdCardNumber?: string;
|
|
108
|
+
/**
|
|
109
|
+
* 经办人手机号
|
|
110
|
+
*/
|
|
111
|
+
Mobile?: string;
|
|
112
|
+
}
|
|
80
113
|
/**
|
|
81
114
|
* 此结构体 (TemplateInfo) 用于描述模板的信息。
|
|
82
115
|
*/
|
|
@@ -117,6 +150,23 @@ export interface TemplateInfo {
|
|
|
117
150
|
* 模板中的流程参与人信息
|
|
118
151
|
*/
|
|
119
152
|
Recipients: Array<Recipient>;
|
|
153
|
+
/**
|
|
154
|
+
* 是否是发起人
|
|
155
|
+
*/
|
|
156
|
+
IsPromoter: boolean;
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* GetDownloadFlowUrl返回参数结构体
|
|
160
|
+
*/
|
|
161
|
+
export interface GetDownloadFlowUrlResponse {
|
|
162
|
+
/**
|
|
163
|
+
* 进入合同(流程)下载确认页面链接
|
|
164
|
+
*/
|
|
165
|
+
DownLoadUrl: string;
|
|
166
|
+
/**
|
|
167
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
168
|
+
*/
|
|
169
|
+
RequestId?: string;
|
|
120
170
|
}
|
|
121
171
|
/**
|
|
122
172
|
* DescribeResourceUrlsByFlows返回参数结构体
|
|
@@ -136,6 +186,43 @@ export interface DescribeResourceUrlsByFlowsResponse {
|
|
|
136
186
|
*/
|
|
137
187
|
RequestId?: string;
|
|
138
188
|
}
|
|
189
|
+
/**
|
|
190
|
+
* 签署参与者信息
|
|
191
|
+
*/
|
|
192
|
+
export interface Recipient {
|
|
193
|
+
/**
|
|
194
|
+
* 签署人唯一标识
|
|
195
|
+
*/
|
|
196
|
+
RecipientId?: string;
|
|
197
|
+
/**
|
|
198
|
+
* 签署方类型:ENTERPRISE-企业INDIVIDUAL-自然人
|
|
199
|
+
*/
|
|
200
|
+
RecipientType?: string;
|
|
201
|
+
/**
|
|
202
|
+
* 描述
|
|
203
|
+
*/
|
|
204
|
+
Description?: string;
|
|
205
|
+
/**
|
|
206
|
+
* 签署方备注信息
|
|
207
|
+
*/
|
|
208
|
+
RoleName?: string;
|
|
209
|
+
/**
|
|
210
|
+
* 是否需要校验
|
|
211
|
+
*/
|
|
212
|
+
RequireValidation?: boolean;
|
|
213
|
+
/**
|
|
214
|
+
* 是否必须填写
|
|
215
|
+
*/
|
|
216
|
+
RequireSign?: boolean;
|
|
217
|
+
/**
|
|
218
|
+
* 签署类型
|
|
219
|
+
*/
|
|
220
|
+
SignType?: number;
|
|
221
|
+
/**
|
|
222
|
+
* 签署顺序:数字越小优先级越高
|
|
223
|
+
*/
|
|
224
|
+
RoutingOrder?: number;
|
|
225
|
+
}
|
|
139
226
|
/**
|
|
140
227
|
* DescribeTemplates返回参数结构体
|
|
141
228
|
*/
|
|
@@ -150,25 +237,43 @@ export interface DescribeTemplatesResponse {
|
|
|
150
237
|
RequestId?: string;
|
|
151
238
|
}
|
|
152
239
|
/**
|
|
153
|
-
*
|
|
240
|
+
* OperateChannelTemplate返回参数结构体
|
|
154
241
|
*/
|
|
155
|
-
export interface
|
|
242
|
+
export interface OperateChannelTemplateResponse {
|
|
156
243
|
/**
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
244
|
+
* 腾讯电子签颁发给渠道的应用ID
|
|
245
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
246
|
+
*/
|
|
247
|
+
AppId: string;
|
|
160
248
|
/**
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
249
|
+
* 渠道方模板库模板唯一标识
|
|
250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
251
|
+
*/
|
|
252
|
+
TemplateId: string;
|
|
164
253
|
/**
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
254
|
+
* 全部成功-"all-success",部分成功-"part-success", 全部失败-"fail"失败的会在FailMessageList中展示
|
|
255
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
256
|
+
*/
|
|
257
|
+
OperateResult: string;
|
|
168
258
|
/**
|
|
169
|
-
|
|
259
|
+
* 模板可见性, 全部可见-"all", 部分可见-"part"
|
|
260
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
261
|
+
*/
|
|
262
|
+
AuthTag: string;
|
|
263
|
+
/**
|
|
264
|
+
* 合作企业方第三方机构唯一标识数据
|
|
265
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
266
|
+
*/
|
|
267
|
+
ProxyOrganizationOpenIds: Array<string>;
|
|
268
|
+
/**
|
|
269
|
+
* 操作失败信息数组
|
|
270
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
271
|
+
*/
|
|
272
|
+
FailMessageList: Array<AuthFailMessage>;
|
|
273
|
+
/**
|
|
274
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
170
275
|
*/
|
|
171
|
-
|
|
276
|
+
RequestId?: string;
|
|
172
277
|
}
|
|
173
278
|
/**
|
|
174
279
|
* CreateSignUrls请求参数结构体
|
|
@@ -195,6 +300,36 @@ export interface CreateSignUrlsRequest {
|
|
|
195
300
|
*/
|
|
196
301
|
JumpUrl?: string;
|
|
197
302
|
}
|
|
303
|
+
/**
|
|
304
|
+
* 授权出错信息
|
|
305
|
+
*/
|
|
306
|
+
export interface AuthFailMessage {
|
|
307
|
+
/**
|
|
308
|
+
* 合作企业Id
|
|
309
|
+
*/
|
|
310
|
+
ProxyOrganizationOpenId: string;
|
|
311
|
+
/**
|
|
312
|
+
* 出错信息
|
|
313
|
+
*/
|
|
314
|
+
Message: string;
|
|
315
|
+
}
|
|
316
|
+
/**
|
|
317
|
+
* DescribeFlowDetailInfo请求参数结构体
|
|
318
|
+
*/
|
|
319
|
+
export interface DescribeFlowDetailInfoRequest {
|
|
320
|
+
/**
|
|
321
|
+
* 应用信息
|
|
322
|
+
*/
|
|
323
|
+
Agent: Agent;
|
|
324
|
+
/**
|
|
325
|
+
* 合同(流程)编号数组
|
|
326
|
+
*/
|
|
327
|
+
FlowIds: Array<string>;
|
|
328
|
+
/**
|
|
329
|
+
* 操作者的信息
|
|
330
|
+
*/
|
|
331
|
+
Operator?: UserInfo;
|
|
332
|
+
}
|
|
198
333
|
/**
|
|
199
334
|
* DescribeResourceUrlsByFlows请求参数结构体
|
|
200
335
|
*/
|
|
@@ -311,71 +446,63 @@ export interface Component {
|
|
|
311
446
|
ComponentDescription?: string;
|
|
312
447
|
}
|
|
313
448
|
/**
|
|
314
|
-
*
|
|
449
|
+
* GetDownloadFlowUrl请求参数结构体
|
|
315
450
|
*/
|
|
316
|
-
export interface
|
|
451
|
+
export interface GetDownloadFlowUrlRequest {
|
|
317
452
|
/**
|
|
318
|
-
*
|
|
319
|
-
|
|
453
|
+
* 应用信息
|
|
454
|
+
此接口Agent.ProxyOrganizationOpenId 和 Agent. ProxyOperator.OpenId 必填
|
|
320
455
|
*/
|
|
321
|
-
|
|
456
|
+
Agent: Agent;
|
|
322
457
|
/**
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
Deadline: number;
|
|
458
|
+
* 操作者的信息
|
|
459
|
+
*/
|
|
460
|
+
Operator?: UserInfo;
|
|
327
461
|
/**
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
462
|
+
* 文件夹数组,合同(流程)总数不能超过50个,一个文件夹下,不能超过20个合同(流程),
|
|
463
|
+
*/
|
|
464
|
+
DownLoadFlows?: Array<DownloadFlowInfo>;
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
|
|
468
|
+
*/
|
|
469
|
+
export interface FlowDetailInfo {
|
|
332
470
|
/**
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
SignId: string;
|
|
471
|
+
* 合同(流程)的Id
|
|
472
|
+
*/
|
|
473
|
+
FlowId: string;
|
|
337
474
|
/**
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
CustomUserId: string;
|
|
475
|
+
* 合同(流程)的名字
|
|
476
|
+
*/
|
|
477
|
+
FlowName: string;
|
|
342
478
|
/**
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
Name: string;
|
|
479
|
+
* 合同(流程)的类型
|
|
480
|
+
*/
|
|
481
|
+
FlowType: string;
|
|
347
482
|
/**
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
Mobile: string;
|
|
483
|
+
* 合同(流程)的状态
|
|
484
|
+
*/
|
|
485
|
+
FlowStatus: string;
|
|
352
486
|
/**
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
OrganizationName: string;
|
|
487
|
+
* 合同(流程)的信息
|
|
488
|
+
*/
|
|
489
|
+
FlowMessage: string;
|
|
357
490
|
/**
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
362
|
-
*/
|
|
363
|
-
ApproverType: string;
|
|
491
|
+
* 合同(流程)的创建时间戳
|
|
492
|
+
*/
|
|
493
|
+
CreateOn: number;
|
|
364
494
|
/**
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
IdCardNumber: string;
|
|
495
|
+
* 合同(流程)的签署截止时间戳
|
|
496
|
+
*/
|
|
497
|
+
DeadLine: number;
|
|
369
498
|
/**
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
FlowId: string;
|
|
499
|
+
* 用户自定义数据
|
|
500
|
+
*/
|
|
501
|
+
CustomData: string;
|
|
374
502
|
/**
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
OpenId: string;
|
|
503
|
+
* 合同(流程)的签署人数组
|
|
504
|
+
*/
|
|
505
|
+
FlowApproverInfos: Array<FlowApproverDetail>;
|
|
379
506
|
}
|
|
380
507
|
/**
|
|
381
508
|
* CreateConsoleLoginUrl请求参数结构体
|
|
@@ -434,33 +561,25 @@ export interface CreateFlowsByTemplatesResponse {
|
|
|
434
561
|
RequestId?: string;
|
|
435
562
|
}
|
|
436
563
|
/**
|
|
437
|
-
*
|
|
564
|
+
* PrepareFlows请求参数结构体
|
|
438
565
|
*/
|
|
439
|
-
export interface
|
|
566
|
+
export interface PrepareFlowsRequest {
|
|
440
567
|
/**
|
|
441
|
-
*
|
|
568
|
+
* 渠道应用相关信息
|
|
442
569
|
*/
|
|
443
|
-
|
|
570
|
+
Agent: Agent;
|
|
444
571
|
/**
|
|
445
|
-
*
|
|
572
|
+
* 多个合同(流程)信息
|
|
446
573
|
*/
|
|
447
|
-
|
|
448
|
-
/**
|
|
449
|
-
* 经办人身份证件类型
|
|
450
|
-
用户证件类型:默认ID_CARD
|
|
451
|
-
1. ID_CARD - 居民身份证
|
|
452
|
-
2. HOUSEHOLD_REGISTER - 户口本
|
|
453
|
-
3. TEMP_ID_CARD - 临时居民身份证
|
|
454
|
-
*/
|
|
455
|
-
IdCardType?: string;
|
|
574
|
+
FlowInfos: Array<FlowInfo>;
|
|
456
575
|
/**
|
|
457
|
-
*
|
|
576
|
+
* 操作完成后的跳转地址
|
|
458
577
|
*/
|
|
459
|
-
|
|
578
|
+
JumpUrl: string;
|
|
460
579
|
/**
|
|
461
|
-
*
|
|
580
|
+
* 操作者的信息
|
|
462
581
|
*/
|
|
463
|
-
|
|
582
|
+
Operator?: UserInfo;
|
|
464
583
|
}
|
|
465
584
|
/**
|
|
466
585
|
* SyncProxyOrganizationOperators返回参数结构体
|
|
@@ -483,6 +602,73 @@ export interface SyncProxyOrganizationOperatorsResponse {
|
|
|
483
602
|
*/
|
|
484
603
|
RequestId?: string;
|
|
485
604
|
}
|
|
605
|
+
/**
|
|
606
|
+
* 签署链接内容
|
|
607
|
+
*/
|
|
608
|
+
export interface SignUrlInfo {
|
|
609
|
+
/**
|
|
610
|
+
* 签署链接
|
|
611
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
612
|
+
*/
|
|
613
|
+
SignUrl: string;
|
|
614
|
+
/**
|
|
615
|
+
* 链接失效时间
|
|
616
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
617
|
+
*/
|
|
618
|
+
Deadline: number;
|
|
619
|
+
/**
|
|
620
|
+
* 当流程为顺序签署此参数有效时,数字越小优先级越高,暂不支持并行签署 可选
|
|
621
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
622
|
+
*/
|
|
623
|
+
SignOrder: number;
|
|
624
|
+
/**
|
|
625
|
+
* 签署人编号
|
|
626
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
627
|
+
*/
|
|
628
|
+
SignId: string;
|
|
629
|
+
/**
|
|
630
|
+
* 自定义用户编号
|
|
631
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
632
|
+
*/
|
|
633
|
+
CustomUserId: string;
|
|
634
|
+
/**
|
|
635
|
+
* 用户姓名
|
|
636
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
637
|
+
*/
|
|
638
|
+
Name: string;
|
|
639
|
+
/**
|
|
640
|
+
* 用户手机号码
|
|
641
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
642
|
+
*/
|
|
643
|
+
Mobile: string;
|
|
644
|
+
/**
|
|
645
|
+
* 签署参与者机构名字
|
|
646
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
647
|
+
*/
|
|
648
|
+
OrganizationName: string;
|
|
649
|
+
/**
|
|
650
|
+
* 参与者类型:
|
|
651
|
+
ORGANIZATION 企业经办人
|
|
652
|
+
PERSON 自然人
|
|
653
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
654
|
+
*/
|
|
655
|
+
ApproverType: string;
|
|
656
|
+
/**
|
|
657
|
+
* 经办人身份证号
|
|
658
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
659
|
+
*/
|
|
660
|
+
IdCardNumber: string;
|
|
661
|
+
/**
|
|
662
|
+
* 签署链接对应流程Id
|
|
663
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
664
|
+
*/
|
|
665
|
+
FlowId: string;
|
|
666
|
+
/**
|
|
667
|
+
* 企业经办人 用户在渠道的编号
|
|
668
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
669
|
+
*/
|
|
670
|
+
OpenId: string;
|
|
671
|
+
}
|
|
486
672
|
/**
|
|
487
673
|
* 流程对应资源链接信息
|
|
488
674
|
*/
|
|
@@ -515,6 +701,27 @@ export interface DescribeTemplatesRequest {
|
|
|
515
701
|
*/
|
|
516
702
|
TemplateId?: string;
|
|
517
703
|
}
|
|
704
|
+
/**
|
|
705
|
+
* SyncProxyOrganizationOperators请求参数结构体
|
|
706
|
+
*/
|
|
707
|
+
export interface SyncProxyOrganizationOperatorsRequest {
|
|
708
|
+
/**
|
|
709
|
+
* 操作类型,新增:"CREATE",修改:"UPDATE",离职:"RESIGN"
|
|
710
|
+
*/
|
|
711
|
+
OperatorType: string;
|
|
712
|
+
/**
|
|
713
|
+
* 应用信息
|
|
714
|
+
*/
|
|
715
|
+
Agent: Agent;
|
|
716
|
+
/**
|
|
717
|
+
* 经办人信息列表
|
|
718
|
+
*/
|
|
719
|
+
ProxyOrganizationOperators: Array<ProxyOrganizationOperator>;
|
|
720
|
+
/**
|
|
721
|
+
* 操作者的信息
|
|
722
|
+
*/
|
|
723
|
+
Operator?: UserInfo;
|
|
724
|
+
}
|
|
518
725
|
/**
|
|
519
726
|
* CreateConsoleLoginUrl返回参数结构体
|
|
520
727
|
*/
|
|
@@ -576,27 +783,6 @@ export interface SyncProxyOrganizationRequest {
|
|
|
576
783
|
*/
|
|
577
784
|
Operator?: UserInfo;
|
|
578
785
|
}
|
|
579
|
-
/**
|
|
580
|
-
* PrepareFlows请求参数结构体
|
|
581
|
-
*/
|
|
582
|
-
export interface PrepareFlowsRequest {
|
|
583
|
-
/**
|
|
584
|
-
* 渠道应用相关信息
|
|
585
|
-
*/
|
|
586
|
-
Agent: Agent;
|
|
587
|
-
/**
|
|
588
|
-
* 多个合同(流程)信息
|
|
589
|
-
*/
|
|
590
|
-
FlowInfos: Array<FlowInfo>;
|
|
591
|
-
/**
|
|
592
|
-
* 操作完成后的跳转地址
|
|
593
|
-
*/
|
|
594
|
-
JumpUrl: string;
|
|
595
|
-
/**
|
|
596
|
-
* 操作者的信息
|
|
597
|
-
*/
|
|
598
|
-
Operator?: UserInfo;
|
|
599
|
-
}
|
|
600
786
|
/**
|
|
601
787
|
* 用量明细
|
|
602
788
|
*/
|
|
@@ -637,6 +823,48 @@ export interface CreateSignUrlsResponse {
|
|
|
637
823
|
*/
|
|
638
824
|
RequestId?: string;
|
|
639
825
|
}
|
|
826
|
+
/**
|
|
827
|
+
* OperateChannelTemplate请求参数结构体
|
|
828
|
+
*/
|
|
829
|
+
export interface OperateChannelTemplateRequest {
|
|
830
|
+
/**
|
|
831
|
+
* 应用信息
|
|
832
|
+
*/
|
|
833
|
+
Agent: Agent;
|
|
834
|
+
/**
|
|
835
|
+
* 渠道方模板库模板唯一标识
|
|
836
|
+
*/
|
|
837
|
+
TemplateId: string;
|
|
838
|
+
/**
|
|
839
|
+
* 操作类型,查询:"SELECT",删除:"DELETE",更新:"UPDATE"
|
|
840
|
+
*/
|
|
841
|
+
OperateType: string;
|
|
842
|
+
/**
|
|
843
|
+
* 操作者的信息
|
|
844
|
+
*/
|
|
845
|
+
Operator?: UserInfo;
|
|
846
|
+
/**
|
|
847
|
+
* 模板可见性, 全部可见-"all", 部分可见-"part"
|
|
848
|
+
*/
|
|
849
|
+
AuthTag?: string;
|
|
850
|
+
/**
|
|
851
|
+
* 合作企业方第三方机构唯一标识数据
|
|
852
|
+
*/
|
|
853
|
+
ProxyOrganizationOpenIds?: string;
|
|
854
|
+
}
|
|
855
|
+
/**
|
|
856
|
+
* 合同(流程)下载信息
|
|
857
|
+
*/
|
|
858
|
+
export interface DownloadFlowInfo {
|
|
859
|
+
/**
|
|
860
|
+
* 文件夹名称
|
|
861
|
+
*/
|
|
862
|
+
FileName: string;
|
|
863
|
+
/**
|
|
864
|
+
* 合同(流程)的标识数组
|
|
865
|
+
*/
|
|
866
|
+
FlowIdList: Array<string>;
|
|
867
|
+
}
|
|
640
868
|
/**
|
|
641
869
|
* 同步经办人失败原因
|
|
642
870
|
*/
|
|
@@ -689,41 +917,13 @@ export interface DescribeUsageRequest {
|
|
|
689
917
|
Offset?: number;
|
|
690
918
|
}
|
|
691
919
|
/**
|
|
692
|
-
*
|
|
920
|
+
* 抄送信息
|
|
693
921
|
*/
|
|
694
|
-
export interface
|
|
695
|
-
/**
|
|
696
|
-
* 签署人唯一标识
|
|
697
|
-
*/
|
|
698
|
-
RecipientId?: string;
|
|
699
|
-
/**
|
|
700
|
-
* 签署方类型:ENTERPRISE-企业INDIVIDUAL-自然人
|
|
701
|
-
*/
|
|
702
|
-
RecipientType?: string;
|
|
703
|
-
/**
|
|
704
|
-
* 描述
|
|
705
|
-
*/
|
|
706
|
-
Description?: string;
|
|
922
|
+
export interface CcInfo {
|
|
707
923
|
/**
|
|
708
|
-
*
|
|
709
|
-
*/
|
|
710
|
-
RoleName?: string;
|
|
711
|
-
/**
|
|
712
|
-
* 是否需要校验
|
|
713
|
-
*/
|
|
714
|
-
RequireValidation?: boolean;
|
|
715
|
-
/**
|
|
716
|
-
* 是否必须填写
|
|
924
|
+
* 被抄送人手机号
|
|
717
925
|
*/
|
|
718
|
-
|
|
719
|
-
/**
|
|
720
|
-
* 签署类型
|
|
721
|
-
*/
|
|
722
|
-
SignType?: number;
|
|
723
|
-
/**
|
|
724
|
-
* 签署顺序:数字越小优先级越高
|
|
725
|
-
*/
|
|
726
|
-
RoutingOrder?: number;
|
|
926
|
+
Mobile?: string;
|
|
727
927
|
}
|
|
728
928
|
/**
|
|
729
929
|
* 应用相关信息
|
|
@@ -769,6 +969,60 @@ export interface FormField {
|
|
|
769
969
|
*/
|
|
770
970
|
ComponentName?: string;
|
|
771
971
|
}
|
|
972
|
+
/**
|
|
973
|
+
* 签署人的流程信息明细
|
|
974
|
+
*/
|
|
975
|
+
export interface FlowApproverDetail {
|
|
976
|
+
/**
|
|
977
|
+
* 模板配置时候的签署人id,与控件绑定
|
|
978
|
+
*/
|
|
979
|
+
ReceiptId: string;
|
|
980
|
+
/**
|
|
981
|
+
* 渠道侧企业的第三方id
|
|
982
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
983
|
+
*/
|
|
984
|
+
ProxyOrganizationOpenId: string;
|
|
985
|
+
/**
|
|
986
|
+
* 渠道侧企业操作人的第三方id
|
|
987
|
+
*/
|
|
988
|
+
ProxyOperatorOpenId: string;
|
|
989
|
+
/**
|
|
990
|
+
* 渠道侧企业名称
|
|
991
|
+
*/
|
|
992
|
+
ProxyOrganizationName: string;
|
|
993
|
+
/**
|
|
994
|
+
* 签署人手机号
|
|
995
|
+
*/
|
|
996
|
+
Mobile: string;
|
|
997
|
+
/**
|
|
998
|
+
* 签署人签署顺序
|
|
999
|
+
*/
|
|
1000
|
+
SignOrder: number;
|
|
1001
|
+
/**
|
|
1002
|
+
* 签署人姓名
|
|
1003
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1004
|
+
*/
|
|
1005
|
+
ApproveName: string;
|
|
1006
|
+
/**
|
|
1007
|
+
* 当前签署人的状态
|
|
1008
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1009
|
+
*/
|
|
1010
|
+
ApproveStatus: string;
|
|
1011
|
+
/**
|
|
1012
|
+
* 签署人信息
|
|
1013
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1014
|
+
*/
|
|
1015
|
+
ApproveMessage: string;
|
|
1016
|
+
/**
|
|
1017
|
+
* 签署人签署时间
|
|
1018
|
+
*/
|
|
1019
|
+
ApproveTime: number;
|
|
1020
|
+
/**
|
|
1021
|
+
* 参与者类型 (ORGANIZATION企业/PERSON个人)
|
|
1022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1023
|
+
*/
|
|
1024
|
+
ApproveType: string;
|
|
1025
|
+
}
|
|
772
1026
|
/**
|
|
773
1027
|
* 此结构体 (FlowInfo) 用于描述流程信息。
|
|
774
1028
|
*/
|
|
@@ -813,6 +1067,10 @@ export interface FlowInfo {
|
|
|
813
1067
|
* 渠道的业务信息,限制1024字符
|
|
814
1068
|
*/
|
|
815
1069
|
CustomerData?: string;
|
|
1070
|
+
/**
|
|
1071
|
+
* 被抄送人的信息列表
|
|
1072
|
+
*/
|
|
1073
|
+
CcInfos?: Array<CcInfo>;
|
|
816
1074
|
}
|
|
817
1075
|
/**
|
|
818
1076
|
* 接口调用者信息
|
|
@@ -857,3 +1115,25 @@ export interface DescribeUsageResponse {
|
|
|
857
1115
|
*/
|
|
858
1116
|
RequestId?: string;
|
|
859
1117
|
}
|
|
1118
|
+
/**
|
|
1119
|
+
* DescribeFlowDetailInfo返回参数结构体
|
|
1120
|
+
*/
|
|
1121
|
+
export interface DescribeFlowDetailInfoResponse {
|
|
1122
|
+
/**
|
|
1123
|
+
* 渠道侧应用号Id
|
|
1124
|
+
*/
|
|
1125
|
+
ApplicationId: string;
|
|
1126
|
+
/**
|
|
1127
|
+
* 渠道侧企业第三方Id
|
|
1128
|
+
*/
|
|
1129
|
+
ProxyOrganizationOpenId: string;
|
|
1130
|
+
/**
|
|
1131
|
+
* 合同(流程)的具体详细描述信息
|
|
1132
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1133
|
+
*/
|
|
1134
|
+
FlowInfo: Array<FlowDetailInfo>;
|
|
1135
|
+
/**
|
|
1136
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1137
|
+
*/
|
|
1138
|
+
RequestId?: string;
|
|
1139
|
+
}
|