tencentcloud-sdk-nodejs-ess 4.0.566 → 4.0.568

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.
@@ -20,6 +20,23 @@ export interface DescribeFlowEvidenceReportRequest {
20
20
  */
21
21
  ReportId: string;
22
22
  }
23
+ /**
24
+ * UpdateIntegrationEmployees返回参数结构体
25
+ */
26
+ export interface UpdateIntegrationEmployeesResponse {
27
+ /**
28
+ * 更新成功的用户列表
29
+ */
30
+ SuccessEmployeeData?: Array<SuccessUpdateStaffData>;
31
+ /**
32
+ * 更新失败的用户列表
33
+ */
34
+ FailedEmployeeData?: Array<FailedUpdateStaffData>;
35
+ /**
36
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
37
+ */
38
+ RequestId?: string;
39
+ }
23
40
  /**
24
41
  * 集成版员工部门信息
25
42
  */
@@ -34,48 +51,46 @@ export interface Department {
34
51
  DepartmentName: string;
35
52
  }
36
53
  /**
37
- * CreateSchemeUrl请求参数结构体
54
+ * CreatePreparedPersonalEsign请求参数结构体
38
55
  */
39
- export interface CreateSchemeUrlRequest {
56
+ export interface CreatePreparedPersonalEsignRequest {
40
57
  /**
41
- * 调用方用户信息,userId 必填
58
+ * 个人用户名称
42
59
  */
43
- Operator: UserInfo;
60
+ UserName: string;
44
61
  /**
45
- * 企业名称
62
+ * 身份证件号码
46
63
  */
47
- OrganizationName?: string;
64
+ IdCardNumber: string;
48
65
  /**
49
- * 姓名,最大长度50个字符
66
+ * 印章图片的base64
50
67
  */
51
- Name?: string;
68
+ SealImage: string;
52
69
  /**
53
- * 手机号,大陆手机号11位
70
+ * 印章名称
54
71
  */
55
- Mobile?: string;
56
- /**
57
- * 链接类型
58
- HTTP:跳转电子签小程序的http_url,
59
- APP:第三方APP或小程序跳转电子签小程序的path。
60
- 默认为HTTP类型
61
- */
62
- EndPoint?: string;
72
+ SealName: string;
63
73
  /**
64
- * 签署流程编号 (PathType=1时必传)
74
+ * 调用方用户信息,userId 必填。支持填入集团子公司经办人 userId代发合同。
65
75
  */
66
- FlowId?: string;
76
+ Operator?: UserInfo;
67
77
  /**
68
- * 跳转页面 1: 小程序合同详情 2: 小程序合同列表页 0: 不传, 默认主页
69
- */
70
- PathType?: number;
78
+ * 身份证件类型:
79
+ ID_CARD 身份证
80
+ PASSPORT 护照
81
+ HONGKONG_AND_MACAO 香港身份
82
+ FOREIGN_ID_CARD 国外身份
83
+ HONGKONG_MACAO_AND_TAIWAN 港台身份
84
+ */
85
+ IdCardType?: string;
71
86
  /**
72
- * 是否自动回跳 true:是, false:否。该参数只针对"APP" 类型的签署链接有效
87
+ * 手机号码
73
88
  */
74
- AutoJumpBack?: boolean;
89
+ Mobile?: string;
75
90
  /**
76
- * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
91
+ * 是否需开通自动签
77
92
  */
78
- Agent?: Agent;
93
+ EnableAutoSign?: boolean;
79
94
  }
80
95
  /**
81
96
  * 二期接口返回的模板中文件的信息结构
@@ -255,6 +270,39 @@ export interface CreateIntegrationEmployeesRequest {
255
270
  * 待创建员工的信息,Mobile和DisplayName必填
256
271
  */
257
272
  Employees: Array<Staff>;
273
+ /**
274
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
275
+ */
276
+ Agent?: Agent;
277
+ }
278
+ /**
279
+ * CreateConvertTaskApi请求参数结构体
280
+ */
281
+ export interface CreateConvertTaskApiRequest {
282
+ /**
283
+ * 资源类型 取值范围doc,docx,html,xls,xlsx之一
284
+ */
285
+ ResourceType: string;
286
+ /**
287
+ * 资源名称,长度限制为256字符
288
+ */
289
+ ResourceName: string;
290
+ /**
291
+ * 资源Id,通过UploadFiles获取
292
+ */
293
+ ResourceId: string;
294
+ /**
295
+ * 调用方用户信息,userId 必填
296
+ */
297
+ Operator?: UserInfo;
298
+ /**
299
+ * 应用号信息
300
+ */
301
+ Agent?: Agent;
302
+ /**
303
+ * 暂未开放
304
+ */
305
+ Organization?: OrganizationInfo;
258
306
  }
259
307
  /**
260
308
  * CreateFlowEvidenceReport请求参数结构体
@@ -323,33 +371,41 @@ export interface FlowApproverUrlInfo {
323
371
  ApproverType?: number;
324
372
  }
325
373
  /**
326
- * CreateConvertTaskApi请求参数结构体
374
+ * 授权用户
327
375
  */
328
- export interface CreateConvertTaskApiRequest {
329
- /**
330
- * 资源类型 取值范围doc,docx,html,xls,xlsx之一
331
- */
332
- ResourceType: string;
376
+ export interface AuthorizedUser {
333
377
  /**
334
- * 资源名称,长度限制为256字符
378
+ * 用户id
335
379
  */
336
- ResourceName: string;
380
+ UserId: string;
381
+ }
382
+ /**
383
+ * DescribeIntegrationRoles请求参数结构体
384
+ */
385
+ export interface DescribeIntegrationRolesRequest {
337
386
  /**
338
- * 资源Id,通过UploadFiles获取
387
+ * 操作人信息
339
388
  */
340
- ResourceId: string;
389
+ Operator: UserInfo;
341
390
  /**
342
- * 调用方用户信息,userId 必填
391
+ * 返回最大数量,最大为200
343
392
  */
344
- Operator?: UserInfo;
393
+ Limit: number;
345
394
  /**
346
- * 应用号信息
395
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
347
396
  */
348
397
  Agent?: Agent;
349
398
  /**
350
- * 暂未开放
399
+ * 查询的关键字段:
400
+ Key:"RoleType",Vales:["1"]查询系统角色,Values:["2]查询自定义角色
401
+ Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
402
+ Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
403
+ */
404
+ Filters?: Array<Filter>;
405
+ /**
406
+ * 偏移量,默认为0,最大为2000
351
407
  */
352
- Organization?: OrganizationInfo;
408
+ Offset?: number;
353
409
  }
354
410
  /**
355
411
  * CreateFlowReminds返回参数结构体
@@ -523,13 +579,13 @@ export interface DescribeFlowTemplatesRequest {
523
579
  /**
524
580
  * 这个参数跟下面的IsChannel参数配合使用。
525
581
  IsChannel=false时,ApplicationId参数不起任何作用。
526
- IsChannel=true时,ApplicationId为空,查询所有渠道模板列表;ApplicationId不为空,查询指定渠道下的模板列表
527
- ApplicationId为空,查询渠道模板列表
582
+ IsChannel=true时,ApplicationId为空,查询所有第三方应用集成平台企业模板列表;ApplicationId不为空,查询指定应用下的模板列表
583
+ ApplicationId为空,查询所有应用下的模板列表
528
584
  */
529
585
  ApplicationId?: string;
530
586
  /**
531
587
  * 默认为false,查询SaaS模板库列表;
532
- 为true,查询渠道模板库管理列表
588
+ 为true,查询第三方应用集成平台企业模板库管理列表
533
589
  */
534
590
  IsChannel?: boolean;
535
591
  /**
@@ -681,6 +737,19 @@ export interface DescribeIntegrationEmployeesRequest {
681
737
  */
682
738
  Offset?: number;
683
739
  }
740
+ /**
741
+ * CreateIntegrationUserRoles返回参数结构体
742
+ */
743
+ export interface CreateIntegrationUserRolesResponse {
744
+ /**
745
+ * 绑定角色失败列表信息
746
+ */
747
+ FailedCreateRoleData?: Array<FailedCreateRoleData>;
748
+ /**
749
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
750
+ */
751
+ RequestId?: string;
752
+ }
684
753
  /**
685
754
  * CreateFlow请求参数结构体
686
755
  */
@@ -754,6 +823,50 @@ export interface CreateFlowRequest {
754
823
  */
755
824
  CcInfos?: Array<CcInfo>;
756
825
  }
826
+ /**
827
+ * CreateSchemeUrl请求参数结构体
828
+ */
829
+ export interface CreateSchemeUrlRequest {
830
+ /**
831
+ * 调用方用户信息,userId 必填
832
+ */
833
+ Operator: UserInfo;
834
+ /**
835
+ * 企业名称
836
+ */
837
+ OrganizationName?: string;
838
+ /**
839
+ * 姓名,最大长度50个字符
840
+ */
841
+ Name?: string;
842
+ /**
843
+ * 手机号,大陆手机号11位
844
+ */
845
+ Mobile?: string;
846
+ /**
847
+ * 链接类型
848
+ HTTP:跳转电子签小程序的http_url,
849
+ APP:第三方APP或小程序跳转电子签小程序的path。
850
+ 默认为HTTP类型
851
+ */
852
+ EndPoint?: string;
853
+ /**
854
+ * 签署流程编号 (PathType=1时必传)
855
+ */
856
+ FlowId?: string;
857
+ /**
858
+ * 跳转页面 1: 小程序合同详情 2: 小程序合同列表页 0: 不传, 默认主页
859
+ */
860
+ PathType?: number;
861
+ /**
862
+ * 是否自动回跳 true:是, false:否。该参数只针对"APP" 类型的签署链接有效
863
+ */
864
+ AutoJumpBack?: boolean;
865
+ /**
866
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
867
+ */
868
+ Agent?: Agent;
869
+ }
757
870
  /**
758
871
  * 自动签开启、签署相关配置
759
872
  */
@@ -1057,6 +1170,23 @@ export interface UserThreeFactor {
1057
1170
  */
1058
1171
  IdCardNumber: string;
1059
1172
  }
1173
+ /**
1174
+ * 一码多扫签署二维码对象
1175
+ */
1176
+ export interface SignQrCode {
1177
+ /**
1178
+ * 二维码id
1179
+ */
1180
+ QrCodeId: string;
1181
+ /**
1182
+ * 二维码url
1183
+ */
1184
+ QrCodeUrl: string;
1185
+ /**
1186
+ * 二维码过期时间
1187
+ */
1188
+ ExpiredTime: number;
1189
+ }
1060
1190
  /**
1061
1191
  * CreateSealPolicy返回参数结构体
1062
1192
  */
@@ -1174,21 +1304,17 @@ export interface CreateFlowSignReviewRequest {
1174
1304
  Agent?: Agent;
1175
1305
  }
1176
1306
  /**
1177
- * 创建员工的失败数据
1307
+ * CreateSchemeUrl返回参数结构体
1178
1308
  */
1179
- export interface FailedCreateStaffData {
1180
- /**
1181
- * 员工名
1182
- */
1183
- DisplayName: string;
1309
+ export interface CreateSchemeUrlResponse {
1184
1310
  /**
1185
- * 员工手机号
1311
+ * 小程序链接地址
1186
1312
  */
1187
- Mobile: string;
1313
+ SchemeUrl?: string;
1188
1314
  /**
1189
- * 失败原因
1315
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1190
1316
  */
1191
- Reason: string;
1317
+ RequestId?: string;
1192
1318
  }
1193
1319
  /**
1194
1320
  * CreateUserAutoSignEnableUrl返回参数结构体
@@ -1294,7 +1420,7 @@ export interface DescribeFileUrlsRequest {
1294
1420
  * 电子文档的控件填充信息。按照控件类型进行相应的填充。
1295
1421
 
1296
1422
  【数据表格传参说明】
1297
- 当模板的 ComponentType='DYNAMIC_TABLE'时(渠道版或集成版),FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
1423
+ 当模板的 ComponentType='DYNAMIC_TABLE'时,FormField.ComponentValue需要传递json格式的字符串参数,用于确定表头&填充数据表格(支持内容的单元格合并)
1298
1424
  输入示例1:
1299
1425
 
1300
1426
  ```
@@ -1491,7 +1617,7 @@ export interface Staff {
1491
1617
  */
1492
1618
  Email?: string;
1493
1619
  /**
1494
- * 用户在第三方平台id
1620
+ * 用户在第三方平台id,如需在此接口提醒员工实名,该参数不传
1495
1621
  注意:此字段可能返回 null,表示取不到有效值。
1496
1622
  */
1497
1623
  OpenId?: string;
@@ -1523,6 +1649,14 @@ export interface Staff {
1523
1649
  注意:此字段可能返回 null,表示取不到有效值。
1524
1650
  */
1525
1651
  QuiteJob?: number;
1652
+ /**
1653
+ * 员工离职交接人用户id
1654
+ */
1655
+ ReceiveUserId?: string;
1656
+ /**
1657
+ * 员工离职交接人用户OpenId
1658
+ */
1659
+ ReceiveOpenId?: string;
1526
1660
  }
1527
1661
  /**
1528
1662
  * CreateFlowEvidenceReport返回参数结构体
@@ -1632,13 +1766,17 @@ export interface GroupOrganization {
1632
1766
  FlowEngineEnable?: boolean;
1633
1767
  }
1634
1768
  /**
1635
- * 授权用户
1769
+ * DeleteIntegrationRoleUsers返回参数结构体
1636
1770
  */
1637
- export interface AuthorizedUser {
1771
+ export interface DeleteIntegrationRoleUsersResponse {
1638
1772
  /**
1639
- * 用户id
1773
+ * 角色id
1640
1774
  */
1641
- UserId: string;
1775
+ RoleId?: string;
1776
+ /**
1777
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1778
+ */
1779
+ RequestId?: string;
1642
1780
  }
1643
1781
  /**
1644
1782
  * CreateDocument请求参数结构体
@@ -1699,6 +1837,19 @@ export interface RemindFlowRecords {
1699
1837
  */
1700
1838
  RemindMessage: string;
1701
1839
  }
1840
+ /**
1841
+ * CreatePreparedPersonalEsign返回参数结构体
1842
+ */
1843
+ export interface CreatePreparedPersonalEsignResponse {
1844
+ /**
1845
+ * 导入生成的印章ID
1846
+ */
1847
+ SealId?: string;
1848
+ /**
1849
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1850
+ */
1851
+ RequestId?: string;
1852
+ }
1702
1853
  /**
1703
1854
  * DescribeOrganizationSeals返回参数结构体
1704
1855
  */
@@ -1728,23 +1879,35 @@ export interface DeleteIntegrationEmployeesRequest {
1728
1879
  * 待移除员工的信息,userId和openId二选一,必填一个
1729
1880
  */
1730
1881
  Employees: Array<Staff>;
1882
+ /**
1883
+ * 代理信息
1884
+ */
1885
+ Agent?: Agent;
1731
1886
  }
1732
1887
  /**
1733
- * 一码多扫签署二维码对象
1888
+ * 更新员工信息失败返回的数据信息
1734
1889
  */
1735
- export interface SignQrCode {
1890
+ export interface FailedUpdateStaffData {
1736
1891
  /**
1737
- * 二维码id
1892
+ * 用户传入的名称
1738
1893
  */
1739
- QrCodeId: string;
1894
+ DisplayName?: string;
1740
1895
  /**
1741
- * 二维码url
1896
+ * 用户传入的手机号
1742
1897
  */
1743
- QrCodeUrl: string;
1898
+ Mobile?: string;
1744
1899
  /**
1745
- * 二维码过期时间
1900
+ * 失败原因
1746
1901
  */
1747
- ExpiredTime: number;
1902
+ Reason?: string;
1903
+ /**
1904
+ * 用户Id
1905
+ */
1906
+ UserId?: string;
1907
+ /**
1908
+ * 用户OpenId
1909
+ */
1910
+ OpenId?: string;
1748
1911
  }
1749
1912
  /**
1750
1913
  * GetTaskResultApi请求参数结构体
@@ -1787,12 +1950,33 @@ export interface CreateIntegrationEmployeesResponse {
1787
1950
  /**
1788
1951
  * 创建员工的结果
1789
1952
  */
1790
- CreateEmployeeResult: CreateStaffResult;
1953
+ CreateEmployeeResult?: CreateStaffResult;
1791
1954
  /**
1792
1955
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1793
1956
  */
1794
1957
  RequestId?: string;
1795
1958
  }
1959
+ /**
1960
+ * DeleteIntegrationRoleUsers请求参数结构体
1961
+ */
1962
+ export interface DeleteIntegrationRoleUsersRequest {
1963
+ /**
1964
+ * 操作人
1965
+ */
1966
+ Operator: UserInfo;
1967
+ /**
1968
+ * 角色id
1969
+ */
1970
+ RoleId: string;
1971
+ /**
1972
+ * 用户信息
1973
+ */
1974
+ Users: Array<UserInfo>;
1975
+ /**
1976
+ * 代理信息
1977
+ */
1978
+ Agent?: Agent;
1979
+ }
1796
1980
  /**
1797
1981
  * CreateFlowSignUrl请求参数结构体
1798
1982
  */
@@ -1837,6 +2021,27 @@ export interface CreateReleaseFlowRequest {
1837
2021
  */
1838
2022
  ReleasedApprovers?: Array<ReleasedApprover>;
1839
2023
  }
2024
+ /**
2025
+ * CreateIntegrationUserRoles请求参数结构体
2026
+ */
2027
+ export interface CreateIntegrationUserRolesRequest {
2028
+ /**
2029
+ * 操作人信息
2030
+ */
2031
+ Operator: UserInfo;
2032
+ /**
2033
+ * 绑定角色的用户id列表
2034
+ */
2035
+ UserIds: Array<string>;
2036
+ /**
2037
+ * 绑定角色的角色id列表
2038
+ */
2039
+ RoleIds: Array<string>;
2040
+ /**
2041
+ * 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
2042
+ */
2043
+ Agent?: Agent;
2044
+ }
1840
2045
  /**
1841
2046
  * 此结构体(FlowDetailInfo)描述的是合同(流程)的详细信息
1842
2047
  */
@@ -1883,6 +2088,23 @@ export interface FlowDetailInfo {
1883
2088
  */
1884
2089
  FlowApproverInfos: Array<FlowApproverDetail>;
1885
2090
  }
2091
+ /**
2092
+ * 更新员工信息成功返回的数据信息
2093
+ */
2094
+ export interface SuccessUpdateStaffData {
2095
+ /**
2096
+ * 传入的用户名称
2097
+ */
2098
+ DisplayName?: string;
2099
+ /**
2100
+ * 传入的手机号
2101
+ */
2102
+ Mobile?: string;
2103
+ /**
2104
+ * 用户Id
2105
+ */
2106
+ UserId?: string;
2107
+ }
1886
2108
  /**
1887
2109
  * CreateFlowByFiles返回参数结构体
1888
2110
  */
@@ -1938,6 +2160,11 @@ export interface SuccessCreateStaffData {
1938
2160
  * 员工在电子签平台的id
1939
2161
  */
1940
2162
  UserId: string;
2163
+ /**
2164
+ * 提示,当创建已存在未实名用户时,改字段有值
2165
+ 注意:此字段可能返回 null,表示取不到有效值。
2166
+ */
2167
+ Note?: string;
1941
2168
  }
1942
2169
  /**
1943
2170
  * 签署参与者信息
@@ -2001,7 +2228,7 @@ export interface Recipient {
2001
2228
  */
2002
2229
  export interface VerifyPdfRequest {
2003
2230
  /**
2004
- * 合同Id,流程Id
2231
+ * 流程ID
2005
2232
  */
2006
2233
  FlowId: string;
2007
2234
  /**
@@ -2009,6 +2236,21 @@ export interface VerifyPdfRequest {
2009
2236
  */
2010
2237
  Operator?: UserInfo;
2011
2238
  }
2239
+ /**
2240
+ * 绑定角色失败信息
2241
+ */
2242
+ export interface FailedCreateRoleData {
2243
+ /**
2244
+ * 用户userId
2245
+ 注意:此字段可能返回 null,表示取不到有效值。
2246
+ */
2247
+ UserId?: string;
2248
+ /**
2249
+ * 角色id列表
2250
+ 注意:此字段可能返回 null,表示取不到有效值。
2251
+ */
2252
+ RoleIds?: Array<string>;
2253
+ }
2012
2254
  /**
2013
2255
  * 参与者信息
2014
2256
  */
@@ -2167,17 +2409,21 @@ export interface DescribeIntegrationMainOrganizationUserResponse {
2167
2409
  RequestId?: string;
2168
2410
  }
2169
2411
  /**
2170
- * CreateSchemeUrl返回参数结构体
2412
+ * 创建员工的失败数据
2171
2413
  */
2172
- export interface CreateSchemeUrlResponse {
2414
+ export interface FailedCreateStaffData {
2173
2415
  /**
2174
- * 小程序链接地址
2416
+ * 员工名
2175
2417
  */
2176
- SchemeUrl?: string;
2418
+ DisplayName: string;
2177
2419
  /**
2178
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2420
+ * 员工手机号
2179
2421
  */
2180
- RequestId?: string;
2422
+ Mobile: string;
2423
+ /**
2424
+ * 失败原因
2425
+ */
2426
+ Reason: string;
2181
2427
  }
2182
2428
  /**
2183
2429
  * 指定签署人限制项
@@ -2320,6 +2566,36 @@ export interface CreateFlowByFilesRequest {
2320
2566
  */
2321
2567
  CcNotifyType?: number;
2322
2568
  }
2569
+ /**
2570
+ * 企业角色数据信息
2571
+ */
2572
+ export interface IntegrateRole {
2573
+ /**
2574
+ * 角色id
2575
+ 注意:此字段可能返回 null,表示取不到有效值。
2576
+ */
2577
+ RoleId?: string;
2578
+ /**
2579
+ * 角色名
2580
+ 注意:此字段可能返回 null,表示取不到有效值。
2581
+ */
2582
+ RoleName?: string;
2583
+ /**
2584
+ * 角色类型:1-系统角色,2-自定义角色
2585
+ 注意:此字段可能返回 null,表示取不到有效值。
2586
+ */
2587
+ RoleStatus?: number;
2588
+ /**
2589
+ * 是否是集团角色
2590
+ 注意:此字段可能返回 null,表示取不到有效值。
2591
+ */
2592
+ IsGroupRole?: boolean;
2593
+ /**
2594
+ * 管辖的子企业列表
2595
+ 注意:此字段可能返回 null,表示取不到有效值。
2596
+ */
2597
+ SubOrgIdList?: Array<string>;
2598
+ }
2323
2599
  /**
2324
2600
  * CreatePrepareFlow返回参数结构体
2325
2601
  */
@@ -2618,7 +2894,7 @@ export interface Component {
2618
2894
  CHECK_BOX - 勾选框控件,若选中填写ComponentValue 填写 true或者 false 字符串;
2619
2895
  FILL_IMAGE - 图片控件,ComponentValue 填写图片的资源 ID;
2620
2896
  DYNAMIC_TABLE - 动态表格控件;
2621
- ATTACHMENT - 附件控件,ComponentValue 填写福建图片的资源 ID列表,以逗号分割;
2897
+ ATTACHMENT - 附件控件,ComponentValue 填写附件图片的资源 ID列表,以逗号分割;
2622
2898
  SELECTOR - 选择器控件,ComponentValue填写选择的字符串内容;
2623
2899
  DATE - 日期控件;默认是格式化为xxxx年xx月xx日字符串;
2624
2900
  DISTRICT - 省市区行政区划控件,ComponentValue填写省市区行政区划字符串内容;
@@ -2787,7 +3063,7 @@ export interface Component {
2787
3063
  */
2788
3064
  ComponentDateFontSize?: number;
2789
3065
  /**
2790
- * 渠道版控件 id 标识
3066
+ * 平台模板控件 id 标识
2791
3067
  */
2792
3068
  ChannelComponentId?: string;
2793
3069
  /**
@@ -2799,7 +3075,7 @@ export interface Component {
2799
3075
  */
2800
3076
  OffsetY?: number;
2801
3077
  /**
2802
- * //渠道子客控件来源。0-渠道指定;1-用户自定义
3078
+ * //子客控件来源。0-平台指定;1-用户自定义
2803
3079
  */
2804
3080
  ChannelComponentSource?: number;
2805
3081
  /**
@@ -2820,6 +3096,31 @@ export interface Component {
2820
3096
  */
2821
3097
  KeywordIndexes?: Array<number>;
2822
3098
  }
3099
+ /**
3100
+ * DescribeIntegrationRoles返回参数结构体
3101
+ */
3102
+ export interface DescribeIntegrationRolesResponse {
3103
+ /**
3104
+ * 偏移量,默认为0,最大为2000
3105
+ */
3106
+ Offset?: number;
3107
+ /**
3108
+ * 返回最大数量,最大为200
3109
+ */
3110
+ Limit?: number;
3111
+ /**
3112
+ * 符合查询条件的总的角色数
3113
+ */
3114
+ TotalCount?: number;
3115
+ /**
3116
+ * 企业角色信息列表
3117
+ */
3118
+ IntegrateRoles?: Array<IntegrateRole>;
3119
+ /**
3120
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3121
+ */
3122
+ RequestId?: string;
3123
+ }
2823
3124
  /**
2824
3125
  * CreateFlowReminds请求参数结构体
2825
3126
  */
@@ -2833,6 +3134,23 @@ export interface CreateFlowRemindsRequest {
2833
3134
  */
2834
3135
  FlowIds: Array<string>;
2835
3136
  }
3137
+ /**
3138
+ * UpdateIntegrationEmployees请求参数结构体
3139
+ */
3140
+ export interface UpdateIntegrationEmployeesRequest {
3141
+ /**
3142
+ * 操作人信息
3143
+ */
3144
+ Operator: UserInfo;
3145
+ /**
3146
+ * 代理信息
3147
+ */
3148
+ Agent: Agent;
3149
+ /**
3150
+ * 员工信息
3151
+ */
3152
+ Employees: Array<Staff>;
3153
+ }
2836
3154
  /**
2837
3155
  * DescribeFlowBriefs请求参数结构体
2838
3156
  */
@@ -2857,7 +3175,7 @@ export interface DeleteIntegrationEmployeesResponse {
2857
3175
  /**
2858
3176
  * 员工删除数据
2859
3177
  */
2860
- DeleteEmployeeResult: DeleteStaffsResult;
3178
+ DeleteEmployeeResult?: DeleteStaffsResult;
2861
3179
  /**
2862
3180
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2863
3181
  */
@@ -2887,16 +3205,15 @@ export interface VerifyPdfResponse {
2887
3205
  /**
2888
3206
  * 验签结果,1-文件未被篡改,全部签名在腾讯电子签完成; 2-文件未被篡改,部分签名在腾讯电子签完成;3-文件被篡改;4-异常:文件内没有签名域;5-异常:文件签名格式错误
2889
3207
  */
2890
- VerifyResult: number;
3208
+ VerifyResult?: number;
2891
3209
  /**
2892
- * 验签结果详情,内部状态1-验签成功,在电子签签署;2-验签成功,在其他平台签署;3-验签失败;4-pdf文件没有签名域
2893
- ;5-文件签名格式错误
2894
- */
2895
- PdfVerifyResults: Array<PdfVerifyResult>;
3210
+ * 验签结果详情,内部状态1-验签成功,在电子签签署;2-验签成功,在其他平台签署;3-验签失败;4-pdf文件没有签名域;5-文件签名格式错误
3211
+ */
3212
+ PdfVerifyResults?: Array<PdfVerifyResult>;
2896
3213
  /**
2897
3214
  * 验签序列号
2898
3215
  */
2899
- VerifySerialNo: string;
3216
+ VerifySerialNo?: string;
2900
3217
  /**
2901
3218
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2902
3219
  */