tencentcloud-sdk-nodejs-ess 4.0.638 → 4.0.640
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 +422 -0
- package/SERVICE_CHANGELOG.md +450 -201
- package/package.json +1 -1
- package/products.md +32 -31
- package/src/services/ess/v20201111/ess_client.ts +39 -10
- package/src/services/ess/v20201111/ess_models.ts +280 -87
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +15 -4
- package/tencentcloud/services/ess/v20201111/ess_client.js +19 -4
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +274 -87
|
@@ -642,6 +642,19 @@ export interface CreateConvertTaskApiRequest {
|
|
|
642
642
|
*/
|
|
643
643
|
Organization?: OrganizationInfo;
|
|
644
644
|
}
|
|
645
|
+
/**
|
|
646
|
+
* DeleteIntegrationEmployees返回参数结构体
|
|
647
|
+
*/
|
|
648
|
+
export interface DeleteIntegrationEmployeesResponse {
|
|
649
|
+
/**
|
|
650
|
+
* 员工删除数据
|
|
651
|
+
*/
|
|
652
|
+
DeleteEmployeeResult?: DeleteStaffsResult;
|
|
653
|
+
/**
|
|
654
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
655
|
+
*/
|
|
656
|
+
RequestId?: string;
|
|
657
|
+
}
|
|
645
658
|
/**
|
|
646
659
|
* CreateFlowReminds返回参数结构体
|
|
647
660
|
*/
|
|
@@ -724,7 +737,7 @@ export interface FlowApproverDetail {
|
|
|
724
737
|
/**
|
|
725
738
|
* 签署方姓名
|
|
726
739
|
*/
|
|
727
|
-
ApproveName
|
|
740
|
+
ApproveName?: string;
|
|
728
741
|
/**
|
|
729
742
|
* 签署方的签署状态
|
|
730
743
|
0:还没有发起
|
|
@@ -741,103 +754,78 @@ export interface FlowApproverDetail {
|
|
|
741
754
|
15:已解除
|
|
742
755
|
19:转他人处理
|
|
743
756
|
*/
|
|
744
|
-
ApproveStatus
|
|
757
|
+
ApproveStatus?: number;
|
|
745
758
|
/**
|
|
746
759
|
* 模板配置中的参与方ID,与控件绑定
|
|
747
760
|
*/
|
|
748
|
-
ReceiptId
|
|
761
|
+
ReceiptId?: string;
|
|
749
762
|
/**
|
|
750
763
|
* 客户自定义的用户ID
|
|
751
764
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
752
765
|
*/
|
|
753
|
-
CustomUserId
|
|
766
|
+
CustomUserId?: string;
|
|
754
767
|
/**
|
|
755
768
|
* 签署人手机号
|
|
756
769
|
*/
|
|
757
|
-
Mobile
|
|
770
|
+
Mobile?: string;
|
|
758
771
|
/**
|
|
759
772
|
* 签署顺序,如果是有序签署,签署顺序从小到大
|
|
760
773
|
*/
|
|
761
|
-
SignOrder
|
|
774
|
+
SignOrder?: number;
|
|
762
775
|
/**
|
|
763
776
|
* 签署人签署时间,时间戳,单位秒
|
|
764
777
|
*/
|
|
765
|
-
ApproveTime
|
|
778
|
+
ApproveTime?: number;
|
|
766
779
|
/**
|
|
767
780
|
* 签署方类型,ORGANIZATION-企业员工,PERSON-个人,ENTERPRISESERVER-企业静默签
|
|
768
781
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
769
782
|
*/
|
|
770
|
-
ApproveType
|
|
783
|
+
ApproveType?: string;
|
|
771
784
|
/**
|
|
772
785
|
* 签署方侧用户来源,如WEWORKAPP-企业微信等
|
|
773
786
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
774
787
|
*/
|
|
775
|
-
ApproverSource
|
|
788
|
+
ApproverSource?: string;
|
|
776
789
|
/**
|
|
777
790
|
* 客户自定义签署方标识
|
|
778
791
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
779
792
|
*/
|
|
780
|
-
CustomApproverTag
|
|
793
|
+
CustomApproverTag?: string;
|
|
781
794
|
/**
|
|
782
795
|
* 签署方企业Id
|
|
783
796
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
784
797
|
*/
|
|
785
|
-
OrganizationId
|
|
798
|
+
OrganizationId?: string;
|
|
786
799
|
/**
|
|
787
800
|
* 签署方企业名称
|
|
788
801
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
789
802
|
*/
|
|
790
|
-
OrganizationName
|
|
803
|
+
OrganizationName?: string;
|
|
791
804
|
}
|
|
792
805
|
/**
|
|
793
|
-
*
|
|
806
|
+
* CreateFlowGroupByFiles请求参数结构体
|
|
794
807
|
*/
|
|
795
|
-
export interface
|
|
808
|
+
export interface CreateFlowGroupByFilesRequest {
|
|
796
809
|
/**
|
|
797
|
-
* 调用方用户信息,userId
|
|
810
|
+
* 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
|
|
798
811
|
*/
|
|
799
812
|
Operator: UserInfo;
|
|
800
813
|
/**
|
|
801
|
-
*
|
|
802
|
-
*/
|
|
803
|
-
Agent?: Agent;
|
|
804
|
-
/**
|
|
805
|
-
* 查询内容:0-模板列表及详情(默认),1-仅模板列表
|
|
806
|
-
*/
|
|
807
|
-
ContentType?: number;
|
|
808
|
-
/**
|
|
809
|
-
* 搜索条件,具体参考Filter结构体。本接口取值:template-id:按照【 **模板唯一标识** 】进行过滤
|
|
810
|
-
*/
|
|
811
|
-
Filters?: Array<Filter>;
|
|
812
|
-
/**
|
|
813
|
-
* 查询偏移位置,默认0
|
|
814
|
+
* 合同(流程)组名称,最大长度200个字符
|
|
814
815
|
*/
|
|
815
|
-
|
|
816
|
-
/**
|
|
817
|
-
* 查询个数,默认20,最大200
|
|
818
|
-
*/
|
|
819
|
-
Limit?: number;
|
|
816
|
+
FlowGroupName: string;
|
|
820
817
|
/**
|
|
821
|
-
*
|
|
822
|
-
ApplicationId为空,查询所有应用下的模板列表
|
|
823
|
-
*/
|
|
824
|
-
ApplicationId?: string;
|
|
825
|
-
/**
|
|
826
|
-
* 默认为false,查询SaaS模板库列表;
|
|
827
|
-
为true,查询第三方应用集成平台企业模板库管理列表
|
|
828
|
-
* @deprecated
|
|
818
|
+
* 合同(流程)组的子合同信息,支持2-50个子合同
|
|
829
819
|
*/
|
|
830
|
-
|
|
820
|
+
FlowGroupInfos: Array<FlowGroupInfo>;
|
|
831
821
|
/**
|
|
832
|
-
*
|
|
833
|
-
* @deprecated
|
|
822
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
834
823
|
*/
|
|
835
|
-
|
|
824
|
+
Agent?: Agent;
|
|
836
825
|
/**
|
|
837
|
-
*
|
|
838
|
-
* @deprecated
|
|
826
|
+
* 合同(流程)组的配置项信息。包括是否通知本企业签署方,是否通知其他签署方
|
|
839
827
|
*/
|
|
840
|
-
|
|
828
|
+
FlowGroupOptions?: FlowGroupOptions;
|
|
841
829
|
}
|
|
842
830
|
/**
|
|
843
831
|
* DescribeFlowComponents返回参数结构体
|
|
@@ -896,29 +884,23 @@ export interface CallbackInfo {
|
|
|
896
884
|
CallbackToken?: string;
|
|
897
885
|
}
|
|
898
886
|
/**
|
|
899
|
-
*
|
|
887
|
+
* CreateFlowGroupByTemplates返回参数结构体
|
|
900
888
|
*/
|
|
901
|
-
export interface
|
|
889
|
+
export interface CreateFlowGroupByTemplatesResponse {
|
|
902
890
|
/**
|
|
903
|
-
*
|
|
891
|
+
* 合同(流程)组的合同组Id
|
|
904
892
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
905
893
|
*/
|
|
906
|
-
|
|
894
|
+
FlowGroupId?: string;
|
|
907
895
|
/**
|
|
908
|
-
*
|
|
896
|
+
* 合同(流程)组中子合同列表.
|
|
909
897
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
910
898
|
*/
|
|
911
|
-
|
|
899
|
+
FlowIds?: Array<string>;
|
|
912
900
|
/**
|
|
913
|
-
*
|
|
914
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
915
|
-
*/
|
|
916
|
-
IsPromoter?: boolean;
|
|
917
|
-
/**
|
|
918
|
-
* 填写控件内容
|
|
919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
901
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
920
902
|
*/
|
|
921
|
-
|
|
903
|
+
RequestId?: string;
|
|
922
904
|
}
|
|
923
905
|
/**
|
|
924
906
|
* 企业模板的信息结构
|
|
@@ -1193,6 +1175,10 @@ export interface CreateSchemeUrlRequest {
|
|
|
1193
1175
|
* 签署流程编号 (PathType=1时必传)
|
|
1194
1176
|
*/
|
|
1195
1177
|
FlowId?: string;
|
|
1178
|
+
/**
|
|
1179
|
+
* 合同组ID
|
|
1180
|
+
*/
|
|
1181
|
+
FlowGroupId?: string;
|
|
1196
1182
|
/**
|
|
1197
1183
|
* 跳转页面 1: 小程序合同详情 2: 小程序合同列表页 0: 不传, 默认主页
|
|
1198
1184
|
*/
|
|
@@ -1331,6 +1317,56 @@ export interface CreateIntegrationDepartmentResponse {
|
|
|
1331
1317
|
*/
|
|
1332
1318
|
RequestId?: string;
|
|
1333
1319
|
}
|
|
1320
|
+
/**
|
|
1321
|
+
* DescribeFlowTemplates请求参数结构体
|
|
1322
|
+
*/
|
|
1323
|
+
export interface DescribeFlowTemplatesRequest {
|
|
1324
|
+
/**
|
|
1325
|
+
* 调用方用户信息,userId 必填
|
|
1326
|
+
*/
|
|
1327
|
+
Operator: UserInfo;
|
|
1328
|
+
/**
|
|
1329
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
1330
|
+
*/
|
|
1331
|
+
Agent?: Agent;
|
|
1332
|
+
/**
|
|
1333
|
+
* 查询内容:0-模板列表及详情(默认),1-仅模板列表
|
|
1334
|
+
*/
|
|
1335
|
+
ContentType?: number;
|
|
1336
|
+
/**
|
|
1337
|
+
* 搜索条件,具体参考Filter结构体。本接口取值:template-id:按照【 **模板唯一标识** 】进行过滤
|
|
1338
|
+
*/
|
|
1339
|
+
Filters?: Array<Filter>;
|
|
1340
|
+
/**
|
|
1341
|
+
* 查询偏移位置,默认0
|
|
1342
|
+
*/
|
|
1343
|
+
Offset?: number;
|
|
1344
|
+
/**
|
|
1345
|
+
* 查询个数,默认20,最大200
|
|
1346
|
+
*/
|
|
1347
|
+
Limit?: number;
|
|
1348
|
+
/**
|
|
1349
|
+
* ApplicationId不为空,查询指定应用下的模板列表
|
|
1350
|
+
ApplicationId为空,查询所有应用下的模板列表
|
|
1351
|
+
*/
|
|
1352
|
+
ApplicationId?: string;
|
|
1353
|
+
/**
|
|
1354
|
+
* 默认为false,查询SaaS模板库列表;
|
|
1355
|
+
为true,查询第三方应用集成平台企业模板库管理列表
|
|
1356
|
+
* @deprecated
|
|
1357
|
+
*/
|
|
1358
|
+
IsChannel?: boolean;
|
|
1359
|
+
/**
|
|
1360
|
+
* 暂未开放
|
|
1361
|
+
* @deprecated
|
|
1362
|
+
*/
|
|
1363
|
+
Organization?: OrganizationInfo;
|
|
1364
|
+
/**
|
|
1365
|
+
* 暂未开放
|
|
1366
|
+
* @deprecated
|
|
1367
|
+
*/
|
|
1368
|
+
GenerateSource?: number;
|
|
1369
|
+
}
|
|
1334
1370
|
/**
|
|
1335
1371
|
* DeleteSealPolicies返回参数结构体
|
|
1336
1372
|
*/
|
|
@@ -1715,9 +1751,13 @@ export interface CreateFlowSignReviewRequest {
|
|
|
1715
1751
|
*/
|
|
1716
1752
|
RecipientId?: string;
|
|
1717
1753
|
/**
|
|
1718
|
-
*
|
|
1719
|
-
|
|
1720
|
-
|
|
1754
|
+
* 操作类型:(接口通过该字段区分操作类型)
|
|
1755
|
+
|
|
1756
|
+
SignReview:签署审核
|
|
1757
|
+
CreateReview:发起审核
|
|
1758
|
+
|
|
1759
|
+
默认:SignReview;SignReview:签署审核
|
|
1760
|
+
|
|
1721
1761
|
该字段不传或者为空,则默认为SignReview签署审核,走签署审核流程
|
|
1722
1762
|
若发起个人审核,则指定该字段为:SignReview(注意,给个人审核时,需联系客户经理开白使用)
|
|
1723
1763
|
*/
|
|
@@ -1786,6 +1826,63 @@ export interface CreateUserAutoSignEnableUrlResponse {
|
|
|
1786
1826
|
*/
|
|
1787
1827
|
RequestId?: string;
|
|
1788
1828
|
}
|
|
1829
|
+
/**
|
|
1830
|
+
* 此结构体(FlowGroupInfo)描述的是合同组(流程组)的单个合同(流程)信息
|
|
1831
|
+
*/
|
|
1832
|
+
export interface FlowGroupInfo {
|
|
1833
|
+
/**
|
|
1834
|
+
* 合同(流程)的名称
|
|
1835
|
+
*/
|
|
1836
|
+
FlowName: string;
|
|
1837
|
+
/**
|
|
1838
|
+
* 合同(流程)的签署方信息
|
|
1839
|
+
*/
|
|
1840
|
+
Approvers: Array<ApproverInfo>;
|
|
1841
|
+
/**
|
|
1842
|
+
* 发起合同(流程)的资源Id,此资源必须是PDF文件,来自UploadFiles,使用文件发起合同(流程)组时必传
|
|
1843
|
+
*/
|
|
1844
|
+
FileIds?: Array<string>;
|
|
1845
|
+
/**
|
|
1846
|
+
* 发起合同(流程)的模板Id,用模板发起合同(流程)组时必填
|
|
1847
|
+
*/
|
|
1848
|
+
TemplateId?: string;
|
|
1849
|
+
/**
|
|
1850
|
+
* 合同(流程)的类型
|
|
1851
|
+
*/
|
|
1852
|
+
FlowType?: string;
|
|
1853
|
+
/**
|
|
1854
|
+
* 合同(流程)的描述
|
|
1855
|
+
*/
|
|
1856
|
+
FlowDescription?: string;
|
|
1857
|
+
/**
|
|
1858
|
+
* 合同(流程)的截止时间戳,单位秒。默认是一年
|
|
1859
|
+
*/
|
|
1860
|
+
Deadline?: number;
|
|
1861
|
+
/**
|
|
1862
|
+
* 合同(流程)的回调地址
|
|
1863
|
+
*/
|
|
1864
|
+
CallbackUrl?: string;
|
|
1865
|
+
/**
|
|
1866
|
+
* 第三方平台传递过来的信息, 限制1024字符 格式必须是base64的
|
|
1867
|
+
*/
|
|
1868
|
+
UserData?: string;
|
|
1869
|
+
/**
|
|
1870
|
+
* 合同(流程)的签署是否是无序签, true - 无序。 false - 有序, 默认
|
|
1871
|
+
*/
|
|
1872
|
+
Unordered?: boolean;
|
|
1873
|
+
/**
|
|
1874
|
+
* 合同(流程)发起方的填写控件,用户
|
|
1875
|
+
*/
|
|
1876
|
+
Components?: Array<Component>;
|
|
1877
|
+
/**
|
|
1878
|
+
* 本企业(发起方)是否需要签署审批,若需要审批则只允许查看不允许签署,需要您调用接口CreateFlowSignReview提交审批结果。
|
|
1879
|
+
*/
|
|
1880
|
+
NeedSignReview?: boolean;
|
|
1881
|
+
/**
|
|
1882
|
+
* 本企业(发起方)自动签署,需要您在发起合同时给印章控件指定自动签的印章。
|
|
1883
|
+
*/
|
|
1884
|
+
AutoSignScene?: string;
|
|
1885
|
+
}
|
|
1789
1886
|
/**
|
|
1790
1887
|
* CreateFlowSignUrl返回参数结构体
|
|
1791
1888
|
*/
|
|
@@ -2129,6 +2226,31 @@ export interface Staff {
|
|
|
2129
2226
|
*/
|
|
2130
2227
|
WeworkOpenId?: string;
|
|
2131
2228
|
}
|
|
2229
|
+
/**
|
|
2230
|
+
* 参与方填写控件信息
|
|
2231
|
+
*/
|
|
2232
|
+
export interface RecipientComponentInfo {
|
|
2233
|
+
/**
|
|
2234
|
+
* 参与方Id
|
|
2235
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2236
|
+
*/
|
|
2237
|
+
RecipientId?: string;
|
|
2238
|
+
/**
|
|
2239
|
+
* 参与方填写状态
|
|
2240
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2241
|
+
*/
|
|
2242
|
+
RecipientFillStatus?: string;
|
|
2243
|
+
/**
|
|
2244
|
+
* 是否发起方
|
|
2245
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2246
|
+
*/
|
|
2247
|
+
IsPromoter?: boolean;
|
|
2248
|
+
/**
|
|
2249
|
+
* 填写控件内容
|
|
2250
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2251
|
+
*/
|
|
2252
|
+
Components?: Array<FilledComponent>;
|
|
2253
|
+
}
|
|
2132
2254
|
/**
|
|
2133
2255
|
* CreateFlowEvidenceReport返回参数结构体
|
|
2134
2256
|
*/
|
|
@@ -2345,16 +2467,16 @@ export interface FlowDetailInfo {
|
|
|
2345
2467
|
/**
|
|
2346
2468
|
* 合同(流程)的ID
|
|
2347
2469
|
*/
|
|
2348
|
-
FlowId
|
|
2470
|
+
FlowId?: string;
|
|
2349
2471
|
/**
|
|
2350
2472
|
* 合同(流程)的名字
|
|
2351
2473
|
*/
|
|
2352
|
-
FlowName
|
|
2474
|
+
FlowName?: string;
|
|
2353
2475
|
/**
|
|
2354
2476
|
* 合同(流程)的类型
|
|
2355
2477
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2356
2478
|
*/
|
|
2357
|
-
FlowType
|
|
2479
|
+
FlowType?: string;
|
|
2358
2480
|
/**
|
|
2359
2481
|
* 流程状态
|
|
2360
2482
|
- 0 还没有发起
|
|
@@ -2370,25 +2492,25 @@ export interface FlowDetailInfo {
|
|
|
2370
2492
|
- 10 拒填
|
|
2371
2493
|
- 21 已解除
|
|
2372
2494
|
*/
|
|
2373
|
-
FlowStatus
|
|
2495
|
+
FlowStatus?: number;
|
|
2374
2496
|
/**
|
|
2375
2497
|
* 合同(流程)的信息
|
|
2376
2498
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2377
2499
|
*/
|
|
2378
|
-
FlowMessage
|
|
2500
|
+
FlowMessage?: string;
|
|
2379
2501
|
/**
|
|
2380
2502
|
* 流程的描述
|
|
2381
2503
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2382
2504
|
*/
|
|
2383
|
-
FlowDescription
|
|
2505
|
+
FlowDescription?: string;
|
|
2384
2506
|
/**
|
|
2385
2507
|
* 合同(流程)的创建时间戳,单位秒
|
|
2386
2508
|
*/
|
|
2387
|
-
CreatedOn
|
|
2509
|
+
CreatedOn?: number;
|
|
2388
2510
|
/**
|
|
2389
2511
|
* 合同(流程)的签署方数组
|
|
2390
2512
|
*/
|
|
2391
|
-
FlowApproverInfos
|
|
2513
|
+
FlowApproverInfos?: Array<FlowApproverDetail>;
|
|
2392
2514
|
/**
|
|
2393
2515
|
* 合同(流程)的关注方信息列表
|
|
2394
2516
|
*/
|
|
@@ -2494,6 +2616,28 @@ export interface GetTaskResultApiRequest {
|
|
|
2494
2616
|
*/
|
|
2495
2617
|
Organization?: OrganizationInfo;
|
|
2496
2618
|
}
|
|
2619
|
+
/**
|
|
2620
|
+
* 此结构体(FlowGroupOptions)描述的是合同组的个性化配置,支持控制是否发送短信、未实名个人签署方查看合同组时是否需要实名认证(仅在合同组文件发起配置时生效)
|
|
2621
|
+
*/
|
|
2622
|
+
export interface FlowGroupOptions {
|
|
2623
|
+
/**
|
|
2624
|
+
* 发起合同(流程)组的合同(流程)签署人校验方式
|
|
2625
|
+
VerifyCheck: 人脸识别(默认)
|
|
2626
|
+
MobileCheck:手机号验证
|
|
2627
|
+
参数说明:此参数仅在合同组文件发起有效,可选人脸识别或手机号验证两种方式,若选择后者,未实名个人签署方在签署合同时,无需经过实名认证和意愿确认两次人脸识别,该能力仅适用于个人签署方。
|
|
2628
|
+
*/
|
|
2629
|
+
ApproverVerifyType?: string;
|
|
2630
|
+
/**
|
|
2631
|
+
* 发起合同(流程)组本方企业经办人通知方式
|
|
2632
|
+
签署通知类型:sms--短信,none--不通知
|
|
2633
|
+
*/
|
|
2634
|
+
SelfOrganizationApproverNotifyType?: string;
|
|
2635
|
+
/**
|
|
2636
|
+
* 发起合同(流程)组他方经办人通知方式
|
|
2637
|
+
签署通知类型:sms--短信,none--不通知
|
|
2638
|
+
*/
|
|
2639
|
+
OtherApproverNotifyType?: string;
|
|
2640
|
+
}
|
|
2497
2641
|
/**
|
|
2498
2642
|
* 发起流程快速注册相关信息
|
|
2499
2643
|
*/
|
|
@@ -2507,6 +2651,25 @@ export interface RegisterInfo {
|
|
|
2507
2651
|
*/
|
|
2508
2652
|
Uscc: string;
|
|
2509
2653
|
}
|
|
2654
|
+
/**
|
|
2655
|
+
* CreateFlowGroupByFiles返回参数结构体
|
|
2656
|
+
*/
|
|
2657
|
+
export interface CreateFlowGroupByFilesResponse {
|
|
2658
|
+
/**
|
|
2659
|
+
* 合同(流程)组的合同组Id
|
|
2660
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2661
|
+
*/
|
|
2662
|
+
FlowGroupId?: string;
|
|
2663
|
+
/**
|
|
2664
|
+
* 合同(流程)组中子合同列表.
|
|
2665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2666
|
+
*/
|
|
2667
|
+
FlowIds?: Array<string>;
|
|
2668
|
+
/**
|
|
2669
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2670
|
+
*/
|
|
2671
|
+
RequestId?: string;
|
|
2672
|
+
}
|
|
2510
2673
|
/**
|
|
2511
2674
|
* CreateIntegrationEmployees返回参数结构体
|
|
2512
2675
|
*/
|
|
@@ -2819,14 +2982,14 @@ export interface ApproverInfo {
|
|
|
2819
2982
|
* 签署人的手机号,11位数字
|
|
2820
2983
|
*/
|
|
2821
2984
|
ApproverMobile: string;
|
|
2822
|
-
/**
|
|
2823
|
-
* 签署人的签署控件列表
|
|
2824
|
-
*/
|
|
2825
|
-
SignComponents: Array<Component>;
|
|
2826
2985
|
/**
|
|
2827
2986
|
* 如果签署方是企业签署方,则为企业名
|
|
2828
2987
|
*/
|
|
2829
2988
|
OrganizationName?: string;
|
|
2989
|
+
/**
|
|
2990
|
+
* 签署人的签署控件列表
|
|
2991
|
+
*/
|
|
2992
|
+
SignComponents?: Array<Component>;
|
|
2830
2993
|
/**
|
|
2831
2994
|
* 签署人的身份证号
|
|
2832
2995
|
*/
|
|
@@ -3927,17 +4090,29 @@ export interface DescribeFlowBriefsRequest {
|
|
|
3927
4090
|
Agent?: Agent;
|
|
3928
4091
|
}
|
|
3929
4092
|
/**
|
|
3930
|
-
*
|
|
4093
|
+
* CreateFlowGroupByTemplates请求参数结构体
|
|
3931
4094
|
*/
|
|
3932
|
-
export interface
|
|
4095
|
+
export interface CreateFlowGroupByTemplatesRequest {
|
|
3933
4096
|
/**
|
|
3934
|
-
*
|
|
4097
|
+
* 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId 代发合同
|
|
3935
4098
|
*/
|
|
3936
|
-
|
|
4099
|
+
Operator: UserInfo;
|
|
3937
4100
|
/**
|
|
3938
|
-
*
|
|
4101
|
+
* 合同组名称,最大长度200个字符
|
|
3939
4102
|
*/
|
|
3940
|
-
|
|
4103
|
+
FlowGroupName: string;
|
|
4104
|
+
/**
|
|
4105
|
+
* 合同组的子合同信息,支持2-50个子合同
|
|
4106
|
+
*/
|
|
4107
|
+
FlowGroupInfos: Array<FlowGroupInfo>;
|
|
4108
|
+
/**
|
|
4109
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
4110
|
+
*/
|
|
4111
|
+
Agent?: Agent;
|
|
4112
|
+
/**
|
|
4113
|
+
* 合同组的配置信息。包括是否通知本企业签署方,是否通知其他签署方
|
|
4114
|
+
*/
|
|
4115
|
+
FlowGroupOptions?: FlowGroupOptions;
|
|
3941
4116
|
}
|
|
3942
4117
|
/**
|
|
3943
4118
|
* 一码多扫签署二维码签署信息
|
|
@@ -4244,18 +4419,22 @@ export interface CreateMultiFlowSignQRCodeRequest {
|
|
|
4244
4419
|
* DescribeFlowInfo请求参数结构体
|
|
4245
4420
|
*/
|
|
4246
4421
|
export interface DescribeFlowInfoRequest {
|
|
4247
|
-
/**
|
|
4248
|
-
* 需要查询的流程ID列表,限制最大100个
|
|
4249
|
-
*/
|
|
4250
|
-
FlowIds: Array<string>;
|
|
4251
4422
|
/**
|
|
4252
4423
|
* 调用方用户信息,userId 必填
|
|
4253
4424
|
*/
|
|
4254
4425
|
Operator?: UserInfo;
|
|
4426
|
+
/**
|
|
4427
|
+
* 需要查询的流程ID列表,限制最大100个
|
|
4428
|
+
*/
|
|
4429
|
+
FlowIds?: Array<string>;
|
|
4255
4430
|
/**
|
|
4256
4431
|
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
4257
4432
|
*/
|
|
4258
4433
|
Agent?: Agent;
|
|
4434
|
+
/**
|
|
4435
|
+
* 合同组ID
|
|
4436
|
+
*/
|
|
4437
|
+
FlowGroupId?: string;
|
|
4259
4438
|
}
|
|
4260
4439
|
/**
|
|
4261
4440
|
* DescribeFlowInfo返回参数结构体
|
|
@@ -4265,6 +4444,14 @@ export interface DescribeFlowInfoResponse {
|
|
|
4265
4444
|
* 签署流程信息
|
|
4266
4445
|
*/
|
|
4267
4446
|
FlowDetailInfos?: Array<FlowDetailInfo>;
|
|
4447
|
+
/**
|
|
4448
|
+
* 合同组ID
|
|
4449
|
+
*/
|
|
4450
|
+
FlowGroupId?: string;
|
|
4451
|
+
/**
|
|
4452
|
+
* 合同组名称
|
|
4453
|
+
*/
|
|
4454
|
+
FlowGroupName?: string;
|
|
4268
4455
|
/**
|
|
4269
4456
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4270
4457
|
*/
|