tencentcloud-sdk-nodejs-ess 4.0.453 → 4.0.455
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 +256 -0
- package/SERVICE_CHANGELOG.md +295 -55
- package/package.json +1 -1
- package/products.md +19 -19
- package/src/services/ess/v20201111/ess_client.ts +166 -122
- package/src/services/ess/v20201111/ess_models.ts +500 -175
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +72 -61
- package/tencentcloud/services/ess/v20201111/ess_client.js +93 -76
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +408 -130
|
@@ -1,15 +1,59 @@
|
|
|
1
1
|
/**
|
|
2
|
-
*
|
|
2
|
+
* 合同文件验签单个结果结构体
|
|
3
3
|
*/
|
|
4
|
-
export interface
|
|
4
|
+
export interface PdfVerifyResult {
|
|
5
5
|
/**
|
|
6
|
-
*
|
|
6
|
+
* 验签结果
|
|
7
7
|
*/
|
|
8
|
-
|
|
8
|
+
VerifyResult: number;
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* 签署平台
|
|
11
11
|
*/
|
|
12
|
-
|
|
12
|
+
SignPlatform: string;
|
|
13
|
+
/**
|
|
14
|
+
* 签署人名称
|
|
15
|
+
*/
|
|
16
|
+
SignerName: string;
|
|
17
|
+
/**
|
|
18
|
+
* 签署时间
|
|
19
|
+
*/
|
|
20
|
+
SignTime: number;
|
|
21
|
+
/**
|
|
22
|
+
* 签名算法
|
|
23
|
+
*/
|
|
24
|
+
SignAlgorithm: string;
|
|
25
|
+
/**
|
|
26
|
+
* 签名证书序列号
|
|
27
|
+
*/
|
|
28
|
+
CertSn: string;
|
|
29
|
+
/**
|
|
30
|
+
* 证书起始时间
|
|
31
|
+
*/
|
|
32
|
+
CertNotBefore: number;
|
|
33
|
+
/**
|
|
34
|
+
* 证书过期时间
|
|
35
|
+
*/
|
|
36
|
+
CertNotAfter: number;
|
|
37
|
+
/**
|
|
38
|
+
* 签名域横坐标
|
|
39
|
+
*/
|
|
40
|
+
ComponentPosX: number;
|
|
41
|
+
/**
|
|
42
|
+
* 签名域纵坐标
|
|
43
|
+
*/
|
|
44
|
+
ComponentPosY: number;
|
|
45
|
+
/**
|
|
46
|
+
* 签名域宽度
|
|
47
|
+
*/
|
|
48
|
+
ComponentWidth: number;
|
|
49
|
+
/**
|
|
50
|
+
* 签名域高度
|
|
51
|
+
*/
|
|
52
|
+
ComponentHeight: number;
|
|
53
|
+
/**
|
|
54
|
+
* 签名域所在页码
|
|
55
|
+
*/
|
|
56
|
+
ComponentPage: number;
|
|
13
57
|
}
|
|
14
58
|
/**
|
|
15
59
|
* CancelMultiFlowSignQRCode请求参数结构体
|
|
@@ -137,6 +181,27 @@ export interface CreateDocumentResponse {
|
|
|
137
181
|
*/
|
|
138
182
|
RequestId?: string;
|
|
139
183
|
}
|
|
184
|
+
/**
|
|
185
|
+
* DescribeIntegrationEmployees请求参数结构体
|
|
186
|
+
*/
|
|
187
|
+
export interface DescribeIntegrationEmployeesRequest {
|
|
188
|
+
/**
|
|
189
|
+
* 操作人信息,userId必填
|
|
190
|
+
*/
|
|
191
|
+
Operator: UserInfo;
|
|
192
|
+
/**
|
|
193
|
+
* 返回最大数量,最大为20
|
|
194
|
+
*/
|
|
195
|
+
Limit: number;
|
|
196
|
+
/**
|
|
197
|
+
* 查询过滤实名用户,key为Status,Values为["IsVerified"]
|
|
198
|
+
*/
|
|
199
|
+
Filters?: Array<Filter>;
|
|
200
|
+
/**
|
|
201
|
+
* 偏移量,默认为0,最大为20000
|
|
202
|
+
*/
|
|
203
|
+
Offset?: number;
|
|
204
|
+
}
|
|
140
205
|
/**
|
|
141
206
|
* StartFlow请求参数结构体
|
|
142
207
|
*/
|
|
@@ -273,6 +338,19 @@ export interface CreateFlowRequest {
|
|
|
273
338
|
*/
|
|
274
339
|
Agent?: Agent;
|
|
275
340
|
}
|
|
341
|
+
/**
|
|
342
|
+
* 集成版员工部门信息
|
|
343
|
+
*/
|
|
344
|
+
export interface Department {
|
|
345
|
+
/**
|
|
346
|
+
* 部门id
|
|
347
|
+
*/
|
|
348
|
+
DepartmentId: string;
|
|
349
|
+
/**
|
|
350
|
+
* 部门名称
|
|
351
|
+
*/
|
|
352
|
+
DepartmentName: string;
|
|
353
|
+
}
|
|
276
354
|
/**
|
|
277
355
|
* CreateSchemeUrl请求参数结构体
|
|
278
356
|
*/
|
|
@@ -317,6 +395,30 @@ export interface CreateSchemeUrlRequest {
|
|
|
317
395
|
*/
|
|
318
396
|
Agent?: Agent;
|
|
319
397
|
}
|
|
398
|
+
/**
|
|
399
|
+
* 删除员工结果
|
|
400
|
+
*/
|
|
401
|
+
export interface DeleteStaffsResult {
|
|
402
|
+
/**
|
|
403
|
+
* 删除员工的成功数据
|
|
404
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
405
|
+
*/
|
|
406
|
+
SuccessEmployeeData: Array<SuccessDeleteStaffData>;
|
|
407
|
+
/**
|
|
408
|
+
* 删除员工的失败数据
|
|
409
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
410
|
+
*/
|
|
411
|
+
FailedEmployeeData: Array<FailedDeleteStaffData>;
|
|
412
|
+
}
|
|
413
|
+
/**
|
|
414
|
+
* DescribeThirdPartyAuthCode请求参数结构体
|
|
415
|
+
*/
|
|
416
|
+
export interface DescribeThirdPartyAuthCodeRequest {
|
|
417
|
+
/**
|
|
418
|
+
* 电子签小程序跳转客户小程序时携带的授权查看码
|
|
419
|
+
*/
|
|
420
|
+
AuthCode: string;
|
|
421
|
+
}
|
|
320
422
|
/**
|
|
321
423
|
* 下载文件的URL信息
|
|
322
424
|
*/
|
|
@@ -332,13 +434,17 @@ export interface FileUrl {
|
|
|
332
434
|
Option: string;
|
|
333
435
|
}
|
|
334
436
|
/**
|
|
335
|
-
*
|
|
437
|
+
* DeleteIntegrationEmployees返回参数结构体
|
|
336
438
|
*/
|
|
337
|
-
export interface
|
|
439
|
+
export interface DeleteIntegrationEmployeesResponse {
|
|
338
440
|
/**
|
|
339
|
-
*
|
|
441
|
+
* 员工删除数据
|
|
340
442
|
*/
|
|
341
|
-
|
|
443
|
+
DeleteEmployeeResult: DeleteStaffsResult;
|
|
444
|
+
/**
|
|
445
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
446
|
+
*/
|
|
447
|
+
RequestId?: string;
|
|
342
448
|
}
|
|
343
449
|
/**
|
|
344
450
|
* 查询过滤条件
|
|
@@ -354,21 +460,44 @@ export interface Filter {
|
|
|
354
460
|
Values: Array<string>;
|
|
355
461
|
}
|
|
356
462
|
/**
|
|
357
|
-
*
|
|
463
|
+
* DeleteIntegrationEmployees请求参数结构体
|
|
358
464
|
*/
|
|
359
|
-
export interface
|
|
465
|
+
export interface DeleteIntegrationEmployeesRequest {
|
|
360
466
|
/**
|
|
361
|
-
*
|
|
467
|
+
* 操作人信息,userId必填
|
|
362
468
|
*/
|
|
363
|
-
|
|
469
|
+
Operator: UserInfo;
|
|
364
470
|
/**
|
|
365
|
-
*
|
|
471
|
+
* 待移除员工的信息,userId和openId二选一,必填一个
|
|
366
472
|
*/
|
|
367
|
-
|
|
473
|
+
Employees: Array<Staff>;
|
|
474
|
+
}
|
|
475
|
+
/**
|
|
476
|
+
* DescribeIntegrationEmployees返回参数结构体
|
|
477
|
+
*/
|
|
478
|
+
export interface DescribeIntegrationEmployeesResponse {
|
|
368
479
|
/**
|
|
369
|
-
|
|
480
|
+
* 员工数据列表
|
|
481
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
482
|
+
*/
|
|
483
|
+
Employees: Array<Staff>;
|
|
484
|
+
/**
|
|
485
|
+
* 偏移量,默认为0,最大为20000
|
|
486
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
487
|
+
*/
|
|
488
|
+
Offset: number;
|
|
489
|
+
/**
|
|
490
|
+
* 返回最大数量,最大为20
|
|
370
491
|
*/
|
|
371
|
-
|
|
492
|
+
Limit: number;
|
|
493
|
+
/**
|
|
494
|
+
* 符合条件的员工数量
|
|
495
|
+
*/
|
|
496
|
+
TotalCount: number;
|
|
497
|
+
/**
|
|
498
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
499
|
+
*/
|
|
500
|
+
RequestId?: string;
|
|
372
501
|
}
|
|
373
502
|
/**
|
|
374
503
|
* CreateFlowApprovers返回参数结构体
|
|
@@ -656,6 +785,19 @@ export interface UploadFilesResponse {
|
|
|
656
785
|
*/
|
|
657
786
|
RequestId?: string;
|
|
658
787
|
}
|
|
788
|
+
/**
|
|
789
|
+
* CreateIntegrationEmployees返回参数结构体
|
|
790
|
+
*/
|
|
791
|
+
export interface CreateIntegrationEmployeesResponse {
|
|
792
|
+
/**
|
|
793
|
+
* 创建员工的结果
|
|
794
|
+
*/
|
|
795
|
+
CreateEmployeeResult: CreateStaffResult;
|
|
796
|
+
/**
|
|
797
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
798
|
+
*/
|
|
799
|
+
RequestId?: string;
|
|
800
|
+
}
|
|
659
801
|
/**
|
|
660
802
|
* DescribeThirdPartyAuthCode返回参数结构体
|
|
661
803
|
*/
|
|
@@ -715,6 +857,19 @@ export interface FlowDetailInfo {
|
|
|
715
857
|
*/
|
|
716
858
|
FlowApproverInfos: Array<FlowApproverDetail>;
|
|
717
859
|
}
|
|
860
|
+
/**
|
|
861
|
+
* 此结构体 (UploadFile) 用于描述多文件上传的文件信息。
|
|
862
|
+
*/
|
|
863
|
+
export interface UploadFile {
|
|
864
|
+
/**
|
|
865
|
+
* Base64编码后的文件内容
|
|
866
|
+
*/
|
|
867
|
+
FileBody: string;
|
|
868
|
+
/**
|
|
869
|
+
* 文件名,最大长度不超过200字符
|
|
870
|
+
*/
|
|
871
|
+
FileName?: string;
|
|
872
|
+
}
|
|
718
873
|
/**
|
|
719
874
|
* CreateFlowByFiles返回参数结构体
|
|
720
875
|
*/
|
|
@@ -738,29 +893,21 @@ export interface CreateFlowByFilesResponse {
|
|
|
738
893
|
RequestId?: string;
|
|
739
894
|
}
|
|
740
895
|
/**
|
|
741
|
-
*
|
|
896
|
+
* 创建员工的失败数据
|
|
742
897
|
*/
|
|
743
|
-
export interface
|
|
898
|
+
export interface FailedCreateStaffData {
|
|
744
899
|
/**
|
|
745
|
-
*
|
|
900
|
+
* 员工名
|
|
746
901
|
*/
|
|
747
|
-
|
|
902
|
+
DisplayName: string;
|
|
748
903
|
/**
|
|
749
|
-
*
|
|
750
|
-
*/
|
|
751
|
-
Channel?: string;
|
|
752
|
-
/**
|
|
753
|
-
* 用户在渠道的机构编号
|
|
754
|
-
*/
|
|
755
|
-
OrganizationOpenId?: string;
|
|
756
|
-
/**
|
|
757
|
-
* 用户真实的IP
|
|
904
|
+
* 员工手机号
|
|
758
905
|
*/
|
|
759
|
-
|
|
906
|
+
Mobile: string;
|
|
760
907
|
/**
|
|
761
|
-
*
|
|
908
|
+
* 失败原因
|
|
762
909
|
*/
|
|
763
|
-
|
|
910
|
+
Reason: string;
|
|
764
911
|
}
|
|
765
912
|
/**
|
|
766
913
|
* DescribeFlowBriefs请求参数结构体
|
|
@@ -779,6 +926,23 @@ export interface DescribeFlowBriefsRequest {
|
|
|
779
926
|
*/
|
|
780
927
|
Agent?: Agent;
|
|
781
928
|
}
|
|
929
|
+
/**
|
|
930
|
+
* 创建员工的成功数据
|
|
931
|
+
*/
|
|
932
|
+
export interface SuccessCreateStaffData {
|
|
933
|
+
/**
|
|
934
|
+
* 员工名
|
|
935
|
+
*/
|
|
936
|
+
DisplayName: string;
|
|
937
|
+
/**
|
|
938
|
+
* 员工手机号
|
|
939
|
+
*/
|
|
940
|
+
Mobile: string;
|
|
941
|
+
/**
|
|
942
|
+
* 员工在电子签平台的id
|
|
943
|
+
*/
|
|
944
|
+
UserId: string;
|
|
945
|
+
}
|
|
782
946
|
/**
|
|
783
947
|
* 签署参与者信息
|
|
784
948
|
*/
|
|
@@ -929,58 +1093,17 @@ export interface VerifyPdfResponse {
|
|
|
929
1093
|
RequestId?: string;
|
|
930
1094
|
}
|
|
931
1095
|
/**
|
|
932
|
-
*
|
|
1096
|
+
* CreateIntegrationEmployees请求参数结构体
|
|
933
1097
|
*/
|
|
934
|
-
export interface
|
|
935
|
-
/**
|
|
936
|
-
* 文件对应的业务类型,目前支持:
|
|
937
|
-
- 模板 "TEMPLATE"
|
|
938
|
-
- 文档 "DOCUMENT"
|
|
939
|
-
- 印章 “SEAL”
|
|
940
|
-
- 流程 "FLOW"
|
|
941
|
-
*/
|
|
942
|
-
BusinessType: string;
|
|
943
|
-
/**
|
|
944
|
-
* 业务编号的数组,如模板编号、文档编号、印章编号
|
|
945
|
-
最大支持20个资源
|
|
946
|
-
*/
|
|
947
|
-
BusinessIds: Array<string>;
|
|
1098
|
+
export interface CreateIntegrationEmployeesRequest {
|
|
948
1099
|
/**
|
|
949
|
-
*
|
|
1100
|
+
* 操作人信息,userId必填
|
|
950
1101
|
*/
|
|
951
1102
|
Operator: UserInfo;
|
|
952
1103
|
/**
|
|
953
|
-
*
|
|
954
|
-
*/
|
|
955
|
-
Agent?: Agent;
|
|
956
|
-
/**
|
|
957
|
-
* 下载后的文件命名,只有fileType为zip的时候生效
|
|
958
|
-
*/
|
|
959
|
-
FileName?: string;
|
|
960
|
-
/**
|
|
961
|
-
* 文件类型,"JPG", "PDF","ZIP"等
|
|
962
|
-
*/
|
|
963
|
-
FileType?: string;
|
|
964
|
-
/**
|
|
965
|
-
* 指定资源起始偏移量,默认0
|
|
966
|
-
*/
|
|
967
|
-
Offset?: number;
|
|
968
|
-
/**
|
|
969
|
-
* 指定资源数量,查询全部资源则传入-1
|
|
970
|
-
*/
|
|
971
|
-
Limit?: number;
|
|
972
|
-
/**
|
|
973
|
-
* 下载url过期时间,单位秒。0: 按默认值5分钟,允许范围:1s~24x60x60s(1天)
|
|
974
|
-
*/
|
|
975
|
-
UrlTtl?: number;
|
|
976
|
-
/**
|
|
977
|
-
* 暂不开放
|
|
1104
|
+
* 待创建员工的信息,Mobile和DisplayName必填
|
|
978
1105
|
*/
|
|
979
|
-
|
|
980
|
-
/**
|
|
981
|
-
* 暂不开放
|
|
982
|
-
*/
|
|
983
|
-
CcToken?: string;
|
|
1106
|
+
Employees: Array<Staff>;
|
|
984
1107
|
}
|
|
985
1108
|
/**
|
|
986
1109
|
* 参与者信息
|
|
@@ -1098,61 +1221,23 @@ export interface DescribeFlowTemplatesResponse {
|
|
|
1098
1221
|
RequestId?: string;
|
|
1099
1222
|
}
|
|
1100
1223
|
/**
|
|
1101
|
-
*
|
|
1224
|
+
* 删除员工失败数据
|
|
1102
1225
|
*/
|
|
1103
|
-
export interface
|
|
1104
|
-
/**
|
|
1105
|
-
* 验签结果
|
|
1106
|
-
*/
|
|
1107
|
-
VerifyResult: number;
|
|
1108
|
-
/**
|
|
1109
|
-
* 签署平台
|
|
1110
|
-
*/
|
|
1111
|
-
SignPlatform: string;
|
|
1112
|
-
/**
|
|
1113
|
-
* 签署人名称
|
|
1114
|
-
*/
|
|
1115
|
-
SignerName: string;
|
|
1116
|
-
/**
|
|
1117
|
-
* 签署时间
|
|
1118
|
-
*/
|
|
1119
|
-
SignTime: number;
|
|
1120
|
-
/**
|
|
1121
|
-
* 签名算法
|
|
1122
|
-
*/
|
|
1123
|
-
SignAlgorithm: string;
|
|
1226
|
+
export interface FailedDeleteStaffData {
|
|
1124
1227
|
/**
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
* 证书起始时间
|
|
1130
|
-
*/
|
|
1131
|
-
CertNotBefore: number;
|
|
1132
|
-
/**
|
|
1133
|
-
* 证书过期时间
|
|
1134
|
-
*/
|
|
1135
|
-
CertNotAfter: number;
|
|
1136
|
-
/**
|
|
1137
|
-
* 签名域横坐标
|
|
1138
|
-
*/
|
|
1139
|
-
ComponentPosX: number;
|
|
1140
|
-
/**
|
|
1141
|
-
* 签名域纵坐标
|
|
1142
|
-
*/
|
|
1143
|
-
ComponentPosY: number;
|
|
1144
|
-
/**
|
|
1145
|
-
* 签名域宽度
|
|
1146
|
-
*/
|
|
1147
|
-
ComponentWidth: number;
|
|
1228
|
+
* 员工在电子签的userId
|
|
1229
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1230
|
+
*/
|
|
1231
|
+
UserId: string;
|
|
1148
1232
|
/**
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1233
|
+
* 员工在第三方平台的openId
|
|
1234
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1235
|
+
*/
|
|
1236
|
+
OpenId: string;
|
|
1152
1237
|
/**
|
|
1153
|
-
*
|
|
1238
|
+
* 失败原因
|
|
1154
1239
|
*/
|
|
1155
|
-
|
|
1240
|
+
Reason: string;
|
|
1156
1241
|
}
|
|
1157
1242
|
/**
|
|
1158
1243
|
* CreateFlowEvidenceReport请求参数结构体
|
|
@@ -1188,6 +1273,21 @@ export interface CreateBatchCancelFlowUrlResponse {
|
|
|
1188
1273
|
*/
|
|
1189
1274
|
RequestId?: string;
|
|
1190
1275
|
}
|
|
1276
|
+
/**
|
|
1277
|
+
* 创建员工的结果
|
|
1278
|
+
*/
|
|
1279
|
+
export interface CreateStaffResult {
|
|
1280
|
+
/**
|
|
1281
|
+
* 创建员工的成功列表
|
|
1282
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1283
|
+
*/
|
|
1284
|
+
SuccessEmployeeData: Array<SuccessCreateStaffData>;
|
|
1285
|
+
/**
|
|
1286
|
+
* 创建员工的失败列表
|
|
1287
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1288
|
+
*/
|
|
1289
|
+
FailedEmployeeData: Array<FailedCreateStaffData>;
|
|
1290
|
+
}
|
|
1191
1291
|
/**
|
|
1192
1292
|
* UploadFiles请求参数结构体
|
|
1193
1293
|
*/
|
|
@@ -1227,6 +1327,117 @@ export interface UploadFilesRequest {
|
|
|
1227
1327
|
*/
|
|
1228
1328
|
CustomIds?: Array<string>;
|
|
1229
1329
|
}
|
|
1330
|
+
/**
|
|
1331
|
+
* 一码多扫签署二维码对象
|
|
1332
|
+
*/
|
|
1333
|
+
export interface SignQrCode {
|
|
1334
|
+
/**
|
|
1335
|
+
* 二维码id
|
|
1336
|
+
*/
|
|
1337
|
+
QrCodeId: string;
|
|
1338
|
+
/**
|
|
1339
|
+
* 二维码url
|
|
1340
|
+
*/
|
|
1341
|
+
QrCodeUrl: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* 二维码过期时间
|
|
1344
|
+
*/
|
|
1345
|
+
ExpiredTime: number;
|
|
1346
|
+
}
|
|
1347
|
+
/**
|
|
1348
|
+
* 集成版企业角色信息
|
|
1349
|
+
*/
|
|
1350
|
+
export interface StaffRole {
|
|
1351
|
+
/**
|
|
1352
|
+
* 角色id
|
|
1353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1354
|
+
*/
|
|
1355
|
+
RoleId: string;
|
|
1356
|
+
/**
|
|
1357
|
+
* 角色名称
|
|
1358
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1359
|
+
*/
|
|
1360
|
+
RoleName: string;
|
|
1361
|
+
}
|
|
1362
|
+
/**
|
|
1363
|
+
* DescribeFileUrls请求参数结构体
|
|
1364
|
+
*/
|
|
1365
|
+
export interface DescribeFileUrlsRequest {
|
|
1366
|
+
/**
|
|
1367
|
+
* 文件对应的业务类型,目前支持:
|
|
1368
|
+
- 模板 "TEMPLATE"
|
|
1369
|
+
- 文档 "DOCUMENT"
|
|
1370
|
+
- 印章 “SEAL”
|
|
1371
|
+
- 流程 "FLOW"
|
|
1372
|
+
*/
|
|
1373
|
+
BusinessType: string;
|
|
1374
|
+
/**
|
|
1375
|
+
* 业务编号的数组,如模板编号、文档编号、印章编号
|
|
1376
|
+
最大支持20个资源
|
|
1377
|
+
*/
|
|
1378
|
+
BusinessIds: Array<string>;
|
|
1379
|
+
/**
|
|
1380
|
+
* 操作者信息
|
|
1381
|
+
*/
|
|
1382
|
+
Operator: UserInfo;
|
|
1383
|
+
/**
|
|
1384
|
+
* 应用相关信息
|
|
1385
|
+
*/
|
|
1386
|
+
Agent?: Agent;
|
|
1387
|
+
/**
|
|
1388
|
+
* 下载后的文件命名,只有fileType为zip的时候生效
|
|
1389
|
+
*/
|
|
1390
|
+
FileName?: string;
|
|
1391
|
+
/**
|
|
1392
|
+
* 文件类型,"JPG", "PDF","ZIP"等
|
|
1393
|
+
*/
|
|
1394
|
+
FileType?: string;
|
|
1395
|
+
/**
|
|
1396
|
+
* 指定资源起始偏移量,默认0
|
|
1397
|
+
*/
|
|
1398
|
+
Offset?: number;
|
|
1399
|
+
/**
|
|
1400
|
+
* 指定资源数量,查询全部资源则传入-1
|
|
1401
|
+
*/
|
|
1402
|
+
Limit?: number;
|
|
1403
|
+
/**
|
|
1404
|
+
* 下载url过期时间,单位秒。0: 按默认值5分钟,允许范围:1s~24x60x60s(1天)
|
|
1405
|
+
*/
|
|
1406
|
+
UrlTtl?: number;
|
|
1407
|
+
/**
|
|
1408
|
+
* 暂不开放
|
|
1409
|
+
*/
|
|
1410
|
+
Scene?: string;
|
|
1411
|
+
/**
|
|
1412
|
+
* 暂不开放
|
|
1413
|
+
*/
|
|
1414
|
+
CcToken?: string;
|
|
1415
|
+
}
|
|
1416
|
+
/**
|
|
1417
|
+
* 机构信息
|
|
1418
|
+
*/
|
|
1419
|
+
export interface OrganizationInfo {
|
|
1420
|
+
/**
|
|
1421
|
+
* 机构在平台的编号
|
|
1422
|
+
*/
|
|
1423
|
+
OrganizationId?: string;
|
|
1424
|
+
/**
|
|
1425
|
+
* 用户渠道
|
|
1426
|
+
*/
|
|
1427
|
+
Channel?: string;
|
|
1428
|
+
/**
|
|
1429
|
+
* 用户在渠道的机构编号
|
|
1430
|
+
*/
|
|
1431
|
+
OrganizationOpenId?: string;
|
|
1432
|
+
/**
|
|
1433
|
+
* 用户真实的IP
|
|
1434
|
+
*/
|
|
1435
|
+
ClientIp?: string;
|
|
1436
|
+
/**
|
|
1437
|
+
* 机构的代理IP
|
|
1438
|
+
*/
|
|
1439
|
+
ProxyIp?: string;
|
|
1440
|
+
}
|
|
1230
1441
|
/**
|
|
1231
1442
|
* StartFlow返回参数结构体
|
|
1232
1443
|
*/
|
|
@@ -1295,6 +1506,23 @@ export interface CreateBatchCancelFlowUrlRequest {
|
|
|
1295
1506
|
*/
|
|
1296
1507
|
FlowIds: Array<string>;
|
|
1297
1508
|
}
|
|
1509
|
+
/**
|
|
1510
|
+
* 删除员工的成功数据
|
|
1511
|
+
*/
|
|
1512
|
+
export interface SuccessDeleteStaffData {
|
|
1513
|
+
/**
|
|
1514
|
+
* 员工名
|
|
1515
|
+
*/
|
|
1516
|
+
DisplayName: string;
|
|
1517
|
+
/**
|
|
1518
|
+
* 员工手机号
|
|
1519
|
+
*/
|
|
1520
|
+
Mobile: string;
|
|
1521
|
+
/**
|
|
1522
|
+
* 员工在电子签平台的id
|
|
1523
|
+
*/
|
|
1524
|
+
UserId: string;
|
|
1525
|
+
}
|
|
1298
1526
|
/**
|
|
1299
1527
|
* CreateMultiFlowSignQRCode请求参数结构体
|
|
1300
1528
|
*/
|
|
@@ -1795,3 +2023,53 @@ export interface CcInfo {
|
|
|
1795
2023
|
*/
|
|
1796
2024
|
Mobile?: string;
|
|
1797
2025
|
}
|
|
2026
|
+
/**
|
|
2027
|
+
* 企业员工信息
|
|
2028
|
+
*/
|
|
2029
|
+
export interface Staff {
|
|
2030
|
+
/**
|
|
2031
|
+
* 用户在电子签平台的id
|
|
2032
|
+
*/
|
|
2033
|
+
UserId?: string;
|
|
2034
|
+
/**
|
|
2035
|
+
* 显示的用户名/昵称
|
|
2036
|
+
*/
|
|
2037
|
+
DisplayName?: string;
|
|
2038
|
+
/**
|
|
2039
|
+
* 用户手机号
|
|
2040
|
+
*/
|
|
2041
|
+
Mobile?: string;
|
|
2042
|
+
/**
|
|
2043
|
+
* 用户邮箱
|
|
2044
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2045
|
+
*/
|
|
2046
|
+
Email?: string;
|
|
2047
|
+
/**
|
|
2048
|
+
* 用户在第三方平台id
|
|
2049
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2050
|
+
*/
|
|
2051
|
+
OpenId?: string;
|
|
2052
|
+
/**
|
|
2053
|
+
* 员工角色
|
|
2054
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2055
|
+
*/
|
|
2056
|
+
Roles?: Array<StaffRole>;
|
|
2057
|
+
/**
|
|
2058
|
+
* 员工部门
|
|
2059
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2060
|
+
*/
|
|
2061
|
+
Department?: Department;
|
|
2062
|
+
/**
|
|
2063
|
+
* 员工是否实名
|
|
2064
|
+
*/
|
|
2065
|
+
Verified?: boolean;
|
|
2066
|
+
/**
|
|
2067
|
+
* 员工创建时间戳
|
|
2068
|
+
*/
|
|
2069
|
+
CreatedOn?: number;
|
|
2070
|
+
/**
|
|
2071
|
+
* 员工实名时间戳
|
|
2072
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2073
|
+
*/
|
|
2074
|
+
VerifiedOn?: number;
|
|
2075
|
+
}
|