tencentcloud-sdk-nodejs-essbasic 4.0.614 → 4.0.616

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.
@@ -46,7 +46,7 @@ export interface ChannelDeleteSealPoliciesRequest {
46
46
  */
47
47
  SealId: string;
48
48
  /**
49
- * 指定用户ID数组
49
+ * 指定用户ID数组,电子签系统用户ID
50
50
  */
51
51
  UserIds: Array<string>;
52
52
  /**
@@ -136,11 +136,11 @@ export interface ChannelCreateFlowSignReviewRequest {
136
136
  */
137
137
  export interface AuthFailMessage {
138
138
  /**
139
- * 合作企业Id
139
+ * 第三方应用平台的子客企业OpenId
140
140
  */
141
141
  ProxyOrganizationOpenId: string;
142
142
  /**
143
- * 出错信息
143
+ * 错误信息
144
144
  */
145
145
  Message: string;
146
146
  }
@@ -215,7 +215,7 @@ export interface DescribeResourceUrlsByFlowsRequest {
215
215
  */
216
216
  export interface RemindFlowRecords {
217
217
  /**
218
- * 是否能够催办
218
+ * 是否能够催办,true-是,false-否
219
219
  */
220
220
  CanRemind: boolean;
221
221
  /**
@@ -223,7 +223,7 @@ export interface RemindFlowRecords {
223
223
  */
224
224
  FlowId: string;
225
225
  /**
226
- * 催办详情
226
+ * 催办详情信息
227
227
  */
228
228
  RemindMessage: string;
229
229
  }
@@ -346,7 +346,7 @@ export interface FlowFileInfo {
346
346
  */
347
347
  export interface CreateFlowOption {
348
348
  /**
349
- * 是否允许修改合同信息
349
+ * 是否允许修改合同信息,true-是,false-否
350
350
  */
351
351
  CanEditFlow?: boolean;
352
352
  }
@@ -367,7 +367,7 @@ export interface BaseFlowInfo {
367
367
  */
368
368
  FlowDescription: string;
369
369
  /**
370
- * 合同流程截止时间,unix时间戳
370
+ * 合同流程截止时间,unix时间戳,单位秒
371
371
  */
372
372
  Deadline: number;
373
373
  /**
@@ -375,7 +375,7 @@ export interface BaseFlowInfo {
375
375
  */
376
376
  Unordered?: boolean;
377
377
  /**
378
- * 打开智能添加填写区(默认开启,打开:"OPEN" 关闭:"CLOSE")
378
+ * 是否打开智能添加填写区(默认开启,打开:"OPEN" 关闭:"CLOSE")
379
379
  */
380
380
  IntelligentStatus?: string;
381
381
  /**
@@ -383,7 +383,7 @@ export interface BaseFlowInfo {
383
383
  */
384
384
  FormFields?: Array<FormField>;
385
385
  /**
386
- * 本企业(发起方企业)是否需要签署审批,true:开启本企业签署审批
386
+ * 本企业(发起方企业)是否需要签署审批,true:开启本企业签署审批。使用ChannelCreateFlowSignReview接口提交审批结果,才能继续完成签署
387
387
  */
388
388
  NeedSignReview?: boolean;
389
389
  /**
@@ -413,7 +413,7 @@ export interface CreateConsoleLoginUrlResponse {
413
413
  */
414
414
  ConsoleUrl?: string;
415
415
  /**
416
- * 子客企业是否已开通腾讯电子签
416
+ * 子客企业是否已开通腾讯电子签,true-是,false-否
417
417
  */
418
418
  IsActivated?: boolean;
419
419
  /**
@@ -438,7 +438,7 @@ export interface ChannelDeleteRoleUsersRequest {
438
438
  */
439
439
  RoleId: string;
440
440
  /**
441
- * 用户列表
441
+ * 用户列表,电子签系统的UserId
442
442
  */
443
443
  UserIds: Array<string>;
444
444
  /**
@@ -552,7 +552,7 @@ export interface ChannelCreateFlowRemindsRequest {
552
552
  */
553
553
  export interface ChannelCreateSealPolicyResponse {
554
554
  /**
555
- * 最终授权成功的用户ID数组。其他的跳过的是已经授权了的
555
+ * 最终授权成功的电子签系统用户ID数组。其他的跳过的是已经授权了的
556
556
  */
557
557
  UserIds?: Array<string>;
558
558
  /**
@@ -704,10 +704,6 @@ export interface ChannelCreateFlowByFilesRequest {
704
704
  * 标识是否允许发起后添加控件。0为不允许1为允许。如果为1,创建的时候不能有签署控件,只能创建后添加。注意发起后添加控件功能不支持添加骑缝章和签批控件
705
705
  */
706
706
  SignBeanTag?: number;
707
- /**
708
- * 操作者的信息,不用传
709
- */
710
- Operator?: UserInfo;
711
707
  /**
712
708
  * 被抄送人信息列表
713
709
  */
@@ -720,6 +716,10 @@ export interface ChannelCreateFlowByFilesRequest {
720
716
  * 个人自动签场景。发起自动签署时,需设置对应自动签署场景,目前仅支持场景:处方单-E_PRESCRIPTION_AUTO_SIGN
721
717
  */
722
718
  AutoSignScene?: string;
719
+ /**
720
+ * 操作者的信息,不用传
721
+ */
722
+ Operator?: UserInfo;
723
723
  }
724
724
  /**
725
725
  * 渠道角色信息
@@ -800,7 +800,7 @@ export interface FlowApproverDetail {
800
800
  */
801
801
  ApproveMessage: string;
802
802
  /**
803
- * 签署人签署时间
803
+ * 签署人签署时间戳,单位秒
804
804
  */
805
805
  ApproveTime: number;
806
806
  /**
@@ -964,7 +964,7 @@ export interface TemplateInfo {
964
964
  */
965
965
  Description: string;
966
966
  /**
967
- * 模板控件信息结构
967
+ * 模板的填充控件信息结构
968
968
  */
969
969
  Components: Array<Component>;
970
970
  /**
@@ -972,7 +972,7 @@ export interface TemplateInfo {
972
972
  */
973
973
  Recipients: Array<Recipient>;
974
974
  /**
975
- * 签署区模板信息结构
975
+ * 模板中的签署控件信息结构
976
976
  */
977
977
  SignComponents: Array<Component>;
978
978
  /**
@@ -982,31 +982,31 @@ export interface TemplateInfo {
982
982
  /**
983
983
  * 是否是发起人 ,已弃用
984
984
  */
985
- IsPromoter: boolean;
985
+ IsPromoter?: boolean;
986
986
  /**
987
- * 模板的创建者信息
987
+ * 模板的创建者信息,电子签系统用户ID
988
988
  */
989
989
  Creator: string;
990
990
  /**
991
- * 模板创建的时间戳(精确到秒)
991
+ * 模板创建的时间戳,单位秒
992
992
  */
993
993
  CreatedOn: number;
994
994
  /**
995
- * 模板的H5预览链接,可以通过浏览器打开此链接预览模板,或者嵌入到iframe中预览模板。
995
+ * 模板的H5预览链接,可以通过浏览器打开此链接预览模板,或者嵌入到iframe中预览模板。请求参数WithPreviewUrl=true时返回,有效期5分钟。
996
996
  注意:此字段可能返回 null,表示取不到有效值。
997
997
  */
998
998
  PreviewUrl: string;
999
999
  /**
1000
- * 第三方应用集成-模板PDF文件链接
1000
+ * 第三方应用集成-模板PDF文件链接。请求参数WithPdfUrl=true时返回(此功能开放需要联系客户经理),有效期5分钟。
1001
1001
  注意:此字段可能返回 null,表示取不到有效值。
1002
1002
  */
1003
1003
  PdfUrl: string;
1004
1004
  /**
1005
- * 关联的平台企业模板ID
1005
+ * 关联的第三方应用平台企业模板ID
1006
1006
  */
1007
1007
  ChannelTemplateId: string;
1008
1008
  /**
1009
- * 关联的平台企业模板名称
1009
+ * 关联的三方应用平台平台企业模板名称
1010
1010
  注意:此字段可能返回 null,表示取不到有效值。
1011
1011
  */
1012
1012
  ChannelTemplateName: string;
@@ -1069,7 +1069,7 @@ export interface Agent {
1069
1069
  */
1070
1070
  export interface Recipient {
1071
1071
  /**
1072
- * 签署人唯一标识
1072
+ * 签署人唯一标识,在通过模板发起合同的时候对应签署方Id
1073
1073
  */
1074
1074
  RecipientId?: string;
1075
1075
  /**
@@ -1081,15 +1081,15 @@ export interface Recipient {
1081
1081
  */
1082
1082
  Description?: string;
1083
1083
  /**
1084
- * 签署方备注信息
1084
+ * 签署方备注角色名
1085
1085
  */
1086
1086
  RoleName?: string;
1087
1087
  /**
1088
- * 是否需要校验
1088
+ * 是否需要校验,true-是,false-否
1089
1089
  */
1090
1090
  RequireValidation?: boolean;
1091
1091
  /**
1092
- * 是否必须填写
1092
+ * 是否必须填写,true-是,false-否
1093
1093
  */
1094
1094
  RequireSign?: boolean;
1095
1095
  /**
@@ -1254,14 +1254,6 @@ export interface OrganizationInfo {
1254
1254
  * 用户在渠道的机构编号
1255
1255
  */
1256
1256
  OrganizationOpenId: string;
1257
- /**
1258
- * 用户真实的IP
1259
- */
1260
- ClientIp: string;
1261
- /**
1262
- * 机构的代理IP
1263
- */
1264
- ProxyIp: string;
1265
1257
  /**
1266
1258
  * 机构在平台的编号
1267
1259
  */
@@ -1270,6 +1262,14 @@ export interface OrganizationInfo {
1270
1262
  * 用户渠道
1271
1263
  */
1272
1264
  Channel?: string;
1265
+ /**
1266
+ * 用户真实的IP
1267
+ */
1268
+ ClientIp?: string;
1269
+ /**
1270
+ * 机构的代理IP
1271
+ */
1272
+ ProxyIp?: string;
1273
1273
  }
1274
1274
  /**
1275
1275
  * 签署链接内容
@@ -1281,7 +1281,7 @@ export interface SignUrlInfo {
1281
1281
  */
1282
1282
  SignUrl: string;
1283
1283
  /**
1284
- * 合同过期时间
1284
+ * 合同过期时间戳,单位秒
1285
1285
  注意:此字段可能返回 null,表示取不到有效值。
1286
1286
  */
1287
1287
  Deadline: number;
@@ -1299,7 +1299,7 @@ export interface SignUrlInfo {
1299
1299
  * 自定义用户编号
1300
1300
  注意:此字段可能返回 null,表示取不到有效值。
1301
1301
  */
1302
- CustomUserId: string;
1302
+ CustomUserId?: string;
1303
1303
  /**
1304
1304
  * 用户姓名
1305
1305
  注意:此字段可能返回 null,表示取不到有效值。
@@ -1360,7 +1360,7 @@ export interface CommonFlowApprover {
1360
1360
  */
1361
1361
  OrganizationId?: string;
1362
1362
  /**
1363
- * 企业OpenId,第三方应用集成非静默签子客企业签署人发起合同毕传
1363
+ * 企业OpenId,第三方应用集成非静默签子客企业签署人发起合同必传
1364
1364
  */
1365
1365
  OrganizationOpenId?: string;
1366
1366
  /**
@@ -1422,7 +1422,7 @@ export interface PdfVerifyResult {
1422
1422
  */
1423
1423
  SignerName: string;
1424
1424
  /**
1425
- * 签署时间
1425
+ * 签署时间戳,单位秒
1426
1426
  */
1427
1427
  SignTime: number;
1428
1428
  /**
@@ -1434,11 +1434,11 @@ export interface PdfVerifyResult {
1434
1434
  */
1435
1435
  CertSn: string;
1436
1436
  /**
1437
- * 证书起始时间
1437
+ * 证书起始时间戳,单位秒
1438
1438
  */
1439
1439
  CertNotBefore: number;
1440
1440
  /**
1441
- * 证书过期时间
1441
+ * 证书过期时间戳,单位秒
1442
1442
  */
1443
1443
  CertNotAfter: number;
1444
1444
  /**
@@ -1446,23 +1446,23 @@ export interface PdfVerifyResult {
1446
1446
  */
1447
1447
  SignType: number;
1448
1448
  /**
1449
- * 签名域横坐标
1449
+ * 签名域横坐标,单位px
1450
1450
  */
1451
1451
  ComponentPosX: number;
1452
1452
  /**
1453
- * 签名域纵坐标
1453
+ * 签名域纵坐标,单位px
1454
1454
  */
1455
1455
  ComponentPosY: number;
1456
1456
  /**
1457
- * 签名域宽度
1457
+ * 签名域宽度,单位px
1458
1458
  */
1459
1459
  ComponentWidth: number;
1460
1460
  /**
1461
- * 签名域高度
1461
+ * 签名域高度,单位px
1462
1462
  */
1463
1463
  ComponentHeight: number;
1464
1464
  /**
1465
- * 签名域所在页码
1465
+ * 签名域所在页码,1~N
1466
1466
  */
1467
1467
  ComponentPage: number;
1468
1468
  }
@@ -1591,7 +1591,6 @@ export interface DescribeExtendedServiceAuthInfoRequest {
1591
1591
  }
1592
1592
  /**
1593
1593
  * 此结构 (FormField) 用于描述内容控件填充结构。
1594
-
1595
1594
  */
1596
1595
  export interface FormField {
1597
1596
  /**
@@ -1601,7 +1600,7 @@ export interface FormField {
1601
1600
  CHECK_BOX - true/false
1602
1601
  FILL_IMAGE、ATTACHMENT - 附件的FileId,需要通过UploadFiles接口上传获取
1603
1602
  SELECTOR - 选项值
1604
- DYNAMIC_TABLE - 传入json格式的表格内容,具体见数据结构FlowInfo:https://cloud.tencent.com/document/api/1420/61525#FlowInfo
1603
+ DYNAMIC_TABLE - 传入json格式的表格内容,具体见数据结构FlowInfo
1605
1604
  */
1606
1605
  ComponentValue: string;
1607
1606
  /**
@@ -1856,7 +1855,7 @@ export interface DescribeUsageResponse {
1856
1855
  */
1857
1856
  export interface Staff {
1858
1857
  /**
1859
- * 员工在电子签平台的id
1858
+ * 员工在电子签平台的用户ID
1860
1859
  */
1861
1860
  UserId: string;
1862
1861
  /**
@@ -1873,7 +1872,7 @@ export interface Staff {
1873
1872
  */
1874
1873
  Email: string;
1875
1874
  /**
1876
- * 员工在第三方平台id
1875
+ * 员工在第三方应用平台的用户ID
1877
1876
  注意:此字段可能返回 null,表示取不到有效值。
1878
1877
  */
1879
1878
  OpenId: string;
@@ -1892,11 +1891,11 @@ export interface Staff {
1892
1891
  */
1893
1892
  Verified: boolean;
1894
1893
  /**
1895
- * 员工创建时间戳
1894
+ * 员工创建时间戳,单位秒
1896
1895
  */
1897
1896
  CreatedOn: number;
1898
1897
  /**
1899
- * 员工实名时间戳
1898
+ * 员工实名时间戳,单位秒
1900
1899
  */
1901
1900
  VerifiedOn: number;
1902
1901
  /**
@@ -1954,7 +1953,7 @@ export interface ChannelDescribeEmployeesRequest {
1954
1953
  */
1955
1954
  export interface AuthorizedUser {
1956
1955
  /**
1957
- * 用户openid
1956
+ * 第三方应用平台的用户openid
1958
1957
  */
1959
1958
  OpenId: string;
1960
1959
  }
@@ -2184,7 +2183,7 @@ export interface FlowApproverInfo {
2184
2183
  */
2185
2184
  RecipientId?: string;
2186
2185
  /**
2187
- * 签署截止时间,默认一年
2186
+ * 签署截止时间戳,默认一年
2188
2187
  */
2189
2188
  Deadline?: number;
2190
2189
  /**
@@ -2205,7 +2204,7 @@ export interface FlowApproverInfo {
2205
2204
  */
2206
2205
  PreReadTime?: number;
2207
2206
  /**
2208
- * 签署完前端跳转的url,暂未使用
2207
+ * 签署完前端跳转的url,此字段的用法场景请联系客户经理确认
2209
2208
  */
2210
2209
  JumpUrl?: string;
2211
2210
  /**
@@ -2226,6 +2225,12 @@ export interface FlowApproverInfo {
2226
2225
  1-人脸认证 2-签署密码 3-运营商三要素(默认为1,2)
2227
2226
  */
2228
2227
  ApproverSignTypes?: Array<number>;
2228
+ /**
2229
+ * 签署ID
2230
+ - 发起流程时系统自动补充
2231
+ - 创建签署链接时,可以通过查询详情接口获得签署人的SignId,然后可传入此值为该签署人创建签署链接,无需再传姓名、手机号、证件号等其他信息
2232
+ */
2233
+ SignId?: string;
2229
2234
  }
2230
2235
  /**
2231
2236
  * ChannelGetTaskResultApi请求参数结构体
@@ -2282,11 +2287,11 @@ export interface FlowDetailInfo {
2282
2287
  */
2283
2288
  FlowMessage: string;
2284
2289
  /**
2285
- * 合同(流程)的创建时间戳
2290
+ * 合同(流程)的创建时间戳,单位秒
2286
2291
  */
2287
2292
  CreateOn: number;
2288
2293
  /**
2289
- * 合同(流程)的签署截止时间戳
2294
+ * 合同(流程)的签署截止时间戳,单位秒
2290
2295
  */
2291
2296
  DeadLine: number;
2292
2297
  /**
@@ -2428,7 +2433,7 @@ export interface ExtentServiceAuthInfo {
2428
2433
  OVERSEA_SIGN 企业与港澳台居民*签署合同
2429
2434
  MOBILE_CHECK_APPROVER 使用手机号验证签署方身份
2430
2435
  PAGING_SEAL 骑缝章
2431
- DOWNLOAD_FLOW 授权渠道下载合同
2436
+ DOWNLOAD_FLOW 授权平台企业下载合同
2432
2437
  */
2433
2438
  Type?: string;
2434
2439
  /**
@@ -2442,12 +2447,12 @@ export interface ExtentServiceAuthInfo {
2442
2447
  */
2443
2448
  Status?: string;
2444
2449
  /**
2445
- * 最近操作人openid(经办人openid)
2450
+ * 最近操作人第三方应用平台的用户openid
2446
2451
  注意:此字段可能返回 null,表示取不到有效值。
2447
2452
  */
2448
2453
  OperatorOpenId?: string;
2449
2454
  /**
2450
- * 最近操作时间
2455
+ * 最近操作时间戳,单位秒
2451
2456
  注意:此字段可能返回 null,表示取不到有效值。
2452
2457
  */
2453
2458
  OperateOn?: number;
@@ -2487,6 +2492,7 @@ export interface ReleasedApprover {
2487
2492
  /**
2488
2493
  * 签署人类型,目前仅支持
2489
2494
  ORGANIZATION-企业
2495
+ ENTERPRISESERVER-企业静默签
2490
2496
  */
2491
2497
  ApproverType: string;
2492
2498
  /**
@@ -2578,19 +2584,19 @@ export interface ChannelCreateBatchCancelFlowUrlRequest {
2578
2584
  */
2579
2585
  export interface ApproverRestriction {
2580
2586
  /**
2581
- * 指定签署人名字
2587
+ * 指定签署人姓名
2582
2588
  */
2583
2589
  Name?: string;
2584
2590
  /**
2585
- * 指定签署人手机号
2591
+ * 指定签署人手机号,11位数字
2586
2592
  */
2587
2593
  Mobile?: string;
2588
2594
  /**
2589
- * 指定签署人证件类型
2595
+ * 指定签署人证件类型,ID_CARD-身份证,HONGKONG_AND_MACAO-港澳居民来往内地通行证,HONGKONG_MACAO_AND_TAIWAN-港澳台居民居住证
2590
2596
  */
2591
2597
  IdCardType?: string;
2592
2598
  /**
2593
- * 指定签署人证件号码
2599
+ * 指定签署人证件号码,其中字母大写
2594
2600
  */
2595
2601
  IdCardNumber?: string;
2596
2602
  }
@@ -2855,7 +2861,7 @@ export interface ChannelCreateUserRolesRequest {
2855
2861
  */
2856
2862
  Agent: Agent;
2857
2863
  /**
2858
- * 绑定角色的员工id列表
2864
+ * 绑定角色的员工id列表,电子签的UserId
2859
2865
  */
2860
2866
  UserIds: Array<string>;
2861
2867
  /**
@@ -3254,14 +3260,14 @@ export interface ChannelUpdateSealStatusRequest {
3254
3260
  * 印章ID
3255
3261
  */
3256
3262
  SealId: string;
3257
- /**
3258
- * 操作者的信息
3259
- */
3260
- Operator?: UserInfo;
3261
3263
  /**
3262
3264
  * 更新印章状态原因说明
3263
3265
  */
3264
3266
  Reason?: string;
3267
+ /**
3268
+ * 操作者的信息
3269
+ */
3270
+ Operator?: UserInfo;
3265
3271
  }
3266
3272
  /**
3267
3273
  * 一码多扫签署二维码签署信息
@@ -3341,10 +3347,6 @@ export interface DescribeTemplatesRequest {
3341
3347
  * 模糊搜索模板名称,最大长度200
3342
3348
  */
3343
3349
  TemplateName?: string;
3344
- /**
3345
- * 操作者的信息
3346
- */
3347
- Operator?: UserInfo;
3348
3350
  /**
3349
3351
  * 是否获取模板预览链接
3350
3352
  */
@@ -3354,9 +3356,13 @@ export interface DescribeTemplatesRequest {
3354
3356
  */
3355
3357
  WithPdfUrl?: boolean;
3356
3358
  /**
3357
- * 模板ID
3359
+ * 对应第三方应用平台企业的模板ID
3358
3360
  */
3359
3361
  ChannelTemplateId?: string;
3362
+ /**
3363
+ * 操作者的信息
3364
+ */
3365
+ Operator?: UserInfo;
3360
3366
  }
3361
3367
  /**
3362
3368
  * 解除协议文档中内容信息,包括但不限于:解除理由、解除后仍然有效的条款-保留条款、原合同事项处理-费用结算、原合同事项处理-其他事项、其他约定等。
@@ -3396,17 +3402,17 @@ export interface ChannelCreateSealPolicyRequest {
3396
3402
  */
3397
3403
  SealId: string;
3398
3404
  /**
3399
- * 指定待授权的用户ID数组
3405
+ * 指定待授权的用户ID数组,电子签的用户ID
3400
3406
  */
3401
3407
  UserIds: Array<string>;
3402
- /**
3403
- * 企业机构信息,不用传
3404
- */
3405
- Organization?: OrganizationInfo;
3406
3408
  /**
3407
3409
  * 操作人(用户)信息,不用传
3408
3410
  */
3409
3411
  Operator?: UserInfo;
3412
+ /**
3413
+ * 企业机构信息,不用传
3414
+ */
3415
+ Organization?: OrganizationInfo;
3410
3416
  }
3411
3417
  /**
3412
3418
  * 持有的电子印章信息
@@ -3421,11 +3427,11 @@ export interface OccupiedSeal {
3421
3427
  */
3422
3428
  SealName: string;
3423
3429
  /**
3424
- * 电子印章授权时间戳
3430
+ * 电子印章授权时间戳,单位秒
3425
3431
  */
3426
3432
  CreateOn: number;
3427
3433
  /**
3428
- * 电子印章授权人
3434
+ * 电子印章授权人,电子签的UserId
3429
3435
  */
3430
3436
  Creator: string;
3431
3437
  /**
@@ -3446,7 +3452,7 @@ export interface OccupiedSeal {
3446
3452
  */
3447
3453
  Url: string;
3448
3454
  /**
3449
- * 印章类型
3455
+ * 印章类型,OFFICIAL-企业公章,CONTRACT-合同专用章,LEGAL_PERSON_SEAL-法人章
3450
3456
  */
3451
3457
  SealType: string;
3452
3458
  /**
@@ -3598,7 +3604,7 @@ export interface CreateChannelFlowEvidenceReportResponse {
3598
3604
  */
3599
3605
  export interface SyncFailReason {
3600
3606
  /**
3601
- * 经办人Id
3607
+ * 对应Agent-ProxyOperator-OpenId。第三方应用平台自定义,对子客企业员的唯一标识。一个OpenId在一个子客企业内唯一对应一个真实员工,不可在其他子客企业内重复使用。(例如,可以使用经办人企业名+员工身份证的hash值,需要第三方应用平台保存),最大64位字符串
3602
3608
  */
3603
3609
  Id: string;
3604
3610
  /**
@@ -3741,18 +3747,14 @@ export interface DescribeExtendedServiceAuthInfoResponse {
3741
3747
  * ChannelCreateEmbedWebUrl请求参数结构体
3742
3748
  */
3743
3749
  export interface ChannelCreateEmbedWebUrlRequest {
3744
- /**
3745
- * WEB嵌入资源类型,取值范围:CREATE_SEAL创建印章,CREATE_TEMPLATE创建模板,MODIFY_TEMPLATE修改模板,PREVIEW_TEMPLATE预览模板,PREVIEW_FLOW预览流程
3746
- */
3747
- EmbedType: string;
3748
3750
  /**
3749
3751
  * 渠道应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 和 Agent.ProxyAppId 必填。
3750
3752
  */
3751
3753
  Agent: Agent;
3752
3754
  /**
3753
- * 渠道操作者信息
3755
+ * WEB嵌入资源类型,取值范围:CREATE_SEAL创建印章,CREATE_TEMPLATE创建模板,MODIFY_TEMPLATE修改模板,PREVIEW_TEMPLATE预览模板,PREVIEW_FLOW预览流程
3754
3756
  */
3755
- Operator?: UserInfo;
3757
+ EmbedType: string;
3756
3758
  /**
3757
3759
  * WEB嵌入的业务资源ID,EmbedType取值MODIFY_TEMPLATE或PREVIEW_TEMPLATE或 PREVIEW_FLOW时BusinessId必填
3758
3760
  */
@@ -3761,6 +3763,10 @@ export interface ChannelCreateEmbedWebUrlRequest {
3761
3763
  * 是否隐藏控件,只有预览模板时生效
3762
3764
  */
3763
3765
  HiddenComponents?: boolean;
3766
+ /**
3767
+ * 渠道操作者信息
3768
+ */
3769
+ Operator?: UserInfo;
3764
3770
  }
3765
3771
  /**
3766
3772
  * 抄送信息