tencentcloud-sdk-essbasic 3.0.670 → 3.0.672

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e26e311f73aa90eb4f9c223fb109f329206c2d6c
4
- data.tar.gz: 1748bdb76b2c335badbe3786913d623d35ea9a76
3
+ metadata.gz: 5774ef174066d9554a0d407d359b0be82c8af165
4
+ data.tar.gz: f04d4e87d1b3232a0863283eca9130f636ba6879
5
5
  SHA512:
6
- metadata.gz: d426849ff1c78e9b3b893fc5d85e42698211a42b6061ece2b029ca74998207a77854d4dbcebd26ec216b42acde7b52fc91206c5c378010a67117cb2b321993fb
7
- data.tar.gz: 6a49f039e44b835724e1388e1d1b1f1d11b6b7a06c74a44f4248f63880f37f475c8231655263e2f7b2fe456db05db4762230ee24ef3c09711594c528ae354927
6
+ metadata.gz: e6f4158110aeb737f194046cc82e875ce920cd5cfcbd4ad86e3bbfdc1ce5295ce08075b330bea8c892beea6de9411298f7a82cdc95a6123e13cf6f0030c59466
7
+ data.tar.gz: e1096057282b000b674ba9265718b05a67d8b6aced6f2e9021623a34d008607ed661a37d1b5133949e1bd91feb96d9712eb8b4757c68294a8add1bef16c26c70
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.670
1
+ 3.0.672
@@ -274,6 +274,35 @@ module TencentCloud
274
274
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
275
275
  end
276
276
 
277
+ # 适用场景:
278
+ # 当通过模板或文件发起合同时,若未指定企业签署人信息,则可调用此接口动态补充签署人。同一签署人只允许补充一人,最终实际签署人取决于谁先领取合同完成签署。
279
+
280
+ # 限制条件:
281
+ # 1. 本企业(发起方企业)企业签署人仅支持通过企业名称+姓名+手机号进行补充。
282
+ # 2. 个人签署人仅支持通过姓名+手机号进行补充。
283
+
284
+ # @param request: Request instance for ChannelCreateFlowApprovers.
285
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowApproversRequest`
286
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateFlowApproversResponse`
287
+ def ChannelCreateFlowApprovers(request)
288
+ body = send_request('ChannelCreateFlowApprovers', request.serialize)
289
+ response = JSON.parse(body)
290
+ if response['Response'].key?('Error') == false
291
+ model = ChannelCreateFlowApproversResponse.new
292
+ model.deserialize(response['Response'])
293
+ model
294
+ else
295
+ code = response['Response']['Error']['Code']
296
+ message = response['Response']['Error']['Message']
297
+ reqid = response['Response']['RequestId']
298
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
299
+ end
300
+ rescue TencentCloud::Common::TencentCloudSDKException => e
301
+ raise e
302
+ rescue StandardError => e
303
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
304
+ end
305
+
277
306
  # 接口(ChannelCreateFlowByFiles)用于通过文件创建签署流程。此接口静默签能力不可直接使用,请联系客户经理申请使用
278
307
 
279
308
  # @param request: Request instance for ChannelCreateFlowByFiles.
@@ -466,6 +495,35 @@ module TencentCloud
466
495
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
467
496
  end
468
497
 
498
+ # 通过此接口,创建小程序批量签署链接,可以创建企业批量签署链接,员工只需点击链接即可跳转至控制台进行批量签署。
499
+
500
+ # 注:
501
+ # - 员工必须在企业下完成实名认证,且需作为批量签署合同的签署方或者领取方。
502
+ # - 仅支持传入待签署或者待领取的合同,待填写暂不支持。
503
+ # - 员工批量签署,支持多种签名方式,包括手写签名、临摹签名、系统签名、个人印章,暂不支持签批控件
504
+
505
+ # @param request: Request instance for ChannelCreateOrganizationBatchSignUrl.
506
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateOrganizationBatchSignUrlRequest`
507
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateOrganizationBatchSignUrlResponse`
508
+ def ChannelCreateOrganizationBatchSignUrl(request)
509
+ body = send_request('ChannelCreateOrganizationBatchSignUrl', request.serialize)
510
+ response = JSON.parse(body)
511
+ if response['Response'].key?('Error') == false
512
+ model = ChannelCreateOrganizationBatchSignUrlResponse.new
513
+ model.deserialize(response['Response'])
514
+ model
515
+ else
516
+ code = response['Response']['Error']['Code']
517
+ message = response['Response']['Error']['Message']
518
+ reqid = response['Response']['RequestId']
519
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
520
+ end
521
+ rescue TencentCloud::Common::TencentCloudSDKException => e
522
+ raise e
523
+ rescue StandardError => e
524
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
525
+ end
526
+
469
527
  # 生成渠道子客编辑企业信息二维码
470
528
 
471
529
  # @param request: Request instance for ChannelCreateOrganizationModifyQrCode.
@@ -571,7 +629,7 @@ module TencentCloud
571
629
 
572
630
  # 适用场景1:创建当前企业的自定义角色,并且创建时不进行权限的设置(PermissionGroups 参数不传),角色中的权限内容可通过接口 ChannelModifyRole 完成更新。
573
631
 
574
- # 适用场景2:创建当前企业的自定义角色,并且创建时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles 的输出。
632
+ # 适用场景2:创建当前企业的自定义角色,并且创建时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
575
633
 
576
634
  # @param request: Request instance for ChannelCreateRole.
577
635
  # @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelCreateRoleRequest`
@@ -940,7 +998,7 @@ module TencentCloud
940
998
 
941
999
  # 适用场景1:更新当前企业的自定义角色的名称或描述等其他信息,更新时不进行权限的设置(PermissionGroups 参数不传)。
942
1000
 
943
- # 适用场景2:更新当前企业的自定义角色的权限信息,更新时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles 的输出。
1001
+ # 适用场景2:更新当前企业的自定义角色的权限信息,更新时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 ChannelDescribeRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
944
1002
 
945
1003
  # @param request: Request instance for ChannelModifyRole.
946
1004
  # @type request: :class:`Tencentcloud::essbasic::V20210526::ChannelModifyRoleRequest`
@@ -1162,9 +1220,9 @@ module TencentCloud
1162
1220
  # 4. 客户小程序直接跳到电子签小程序-->签署完成退出电子签小程序-->回到客户小程序
1163
1221
  # 跳转到小程序的实现,参考官方文档(分为全屏、半屏两种方式)
1164
1222
  # 全屏方式:
1165
- # (https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html)
1223
+ # (https://developers.weixin.qq.com/miniprogram/dev/api/navigate/wx.navigateToMiniProgram.html
1166
1224
  # 半屏方式:
1167
- # (https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html)
1225
+ # (https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/openEmbeddedMiniProgram.html
1168
1226
  # 其中小程序的原始Id,请联系<对接技术人员>获取,或者查看小程序信息自助获取。
1169
1227
  # 使用CreateSignUrls,设置EndPoint为APP,得到path。
1170
1228
 
@@ -32,8 +32,8 @@ module TencentCloud
32
32
 
33
33
  attr_accessor :AppId, :ProxyOrganizationOpenId, :ProxyOperator, :ProxyAppId, :ProxyOrganizationId
34
34
  extend Gem::Deprecate
35
- deprecate :ProxyOrganizationId, :none, 2023, 9
36
- deprecate :ProxyOrganizationId=, :none, 2023, 9
35
+ deprecate :ProxyOrganizationId, :none, 2023, 10
36
+ deprecate :ProxyOrganizationId=, :none, 2023, 10
37
37
 
38
38
  def initialize(appid=nil, proxyorganizationopenid=nil, proxyoperator=nil, proxyappid=nil, proxyorganizationid=nil)
39
39
  @AppId = appid
@@ -380,8 +380,8 @@ module TencentCloud
380
380
 
381
381
  attr_accessor :Agent, :FlowIds, :CancelMessage, :CancelMessageFormat, :Operator
382
382
  extend Gem::Deprecate
383
- deprecate :Operator, :none, 2023, 9
384
- deprecate :Operator=, :none, 2023, 9
383
+ deprecate :Operator, :none, 2023, 10
384
+ deprecate :Operator=, :none, 2023, 10
385
385
 
386
386
  def initialize(agent=nil, flowids=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
387
387
  @Agent = agent
@@ -445,8 +445,8 @@ module TencentCloud
445
445
 
446
446
  attr_accessor :FlowId, :Agent, :CancelMessage, :CancelMessageFormat, :Operator
447
447
  extend Gem::Deprecate
448
- deprecate :Operator, :none, 2023, 9
449
- deprecate :Operator=, :none, 2023, 9
448
+ deprecate :Operator, :none, 2023, 10
449
+ deprecate :Operator=, :none, 2023, 10
450
450
 
451
451
  def initialize(flowid=nil, agent=nil, cancelmessage=nil, cancelmessageformat=nil, operator=nil)
452
452
  @FlowId = flowid
@@ -498,8 +498,8 @@ module TencentCloud
498
498
 
499
499
  attr_accessor :Agent, :QrCodeId, :Operator
500
500
  extend Gem::Deprecate
501
- deprecate :Operator, :none, 2023, 9
502
- deprecate :Operator=, :none, 2023, 9
501
+ deprecate :Operator, :none, 2023, 10
502
+ deprecate :Operator=, :none, 2023, 10
503
503
 
504
504
  def initialize(agent=nil, qrcodeid=nil, operator=nil)
505
505
  @Agent = agent
@@ -600,8 +600,8 @@ module TencentCloud
600
600
 
601
601
  attr_accessor :Agent, :FlowIds, :Operator
602
602
  extend Gem::Deprecate
603
- deprecate :Operator, :none, 2023, 9
604
- deprecate :Operator=, :none, 2023, 9
603
+ deprecate :Operator, :none, 2023, 10
604
+ deprecate :Operator=, :none, 2023, 10
605
605
 
606
606
  def initialize(agent=nil, flowids=nil, operator=nil)
607
607
  @Agent = agent
@@ -785,8 +785,8 @@ module TencentCloud
785
785
 
786
786
  attr_accessor :Agent, :FlowIds, :Operator
787
787
  extend Gem::Deprecate
788
- deprecate :Operator, :none, 2023, 9
789
- deprecate :Operator=, :none, 2023, 9
788
+ deprecate :Operator, :none, 2023, 10
789
+ deprecate :Operator=, :none, 2023, 10
790
790
 
791
791
  def initialize(agent=nil, flowids=nil, operator=nil)
792
792
  @Agent = agent
@@ -840,10 +840,10 @@ module TencentCloud
840
840
 
841
841
  attr_accessor :Agent, :ResourceType, :ResourceName, :ResourceId, :Operator, :Organization
842
842
  extend Gem::Deprecate
843
- deprecate :Operator, :none, 2023, 9
844
- deprecate :Operator=, :none, 2023, 9
845
- deprecate :Organization, :none, 2023, 9
846
- deprecate :Organization=, :none, 2023, 9
843
+ deprecate :Operator, :none, 2023, 10
844
+ deprecate :Operator=, :none, 2023, 10
845
+ deprecate :Organization, :none, 2023, 10
846
+ deprecate :Organization=, :none, 2023, 10
847
847
 
848
848
  def initialize(agent=nil, resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, organization=nil)
849
849
  @Agent = agent
@@ -922,8 +922,8 @@ module TencentCloud
922
922
 
923
923
  attr_accessor :Agent, :EmbedType, :BusinessId, :HiddenComponents, :Operator
924
924
  extend Gem::Deprecate
925
- deprecate :Operator, :none, 2023, 9
926
- deprecate :Operator=, :none, 2023, 9
925
+ deprecate :Operator, :none, 2023, 10
926
+ deprecate :Operator=, :none, 2023, 10
927
927
 
928
928
  def initialize(agent=nil, embedtype=nil, businessid=nil, hiddencomponents=nil, operator=nil)
929
929
  @Agent = agent
@@ -968,6 +968,74 @@ module TencentCloud
968
968
  end
969
969
  end
970
970
 
971
+ # ChannelCreateFlowApprovers请求参数结构体
972
+ class ChannelCreateFlowApproversRequest < TencentCloud::Common::AbstractModel
973
+ # @param Agent: 渠道应用相关信息
974
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
975
+ # @param FlowId: 合同唯一编号
976
+ # @type FlowId: String
977
+ # @param Approvers: 补充企业签署人信息。
978
+
979
+ # - 如果发起方指定的补充签署人是企业签署人,则需要提供企业名称或者企业OpenId;
980
+
981
+ # - 如果不指定,则使用姓名和手机号进行补充。
982
+ # @type Approvers: Array
983
+ # @param Operator: 操作人信息
984
+ # @type Operator: :class:`Tencentcloud::Essbasic.v20210526.models.UserInfo`
985
+ # @param FillApproverType: 签署人信息补充方式
986
+
987
+ # <ul><li>**0**: 补充或签人,支持补充多个企业经办签署人(默认)注: `不可补充个人签署人`</li>
988
+ # <li>**1**: 补充动态签署人,可补充企业和个人签署人。注: `每个签署方节点签署人是唯一的,一个节点只支持传入一个签署人信息`</li></ul>
989
+ # @type FillApproverType: Integer
990
+
991
+ attr_accessor :Agent, :FlowId, :Approvers, :Operator, :FillApproverType
992
+
993
+ def initialize(agent=nil, flowid=nil, approvers=nil, operator=nil, fillapprovertype=nil)
994
+ @Agent = agent
995
+ @FlowId = flowid
996
+ @Approvers = approvers
997
+ @Operator = operator
998
+ @FillApproverType = fillapprovertype
999
+ end
1000
+
1001
+ def deserialize(params)
1002
+ unless params['Agent'].nil?
1003
+ @Agent = Agent.new
1004
+ @Agent.deserialize(params['Agent'])
1005
+ end
1006
+ @FlowId = params['FlowId']
1007
+ unless params['Approvers'].nil?
1008
+ @Approvers = []
1009
+ params['Approvers'].each do |i|
1010
+ fillapproverinfo_tmp = FillApproverInfo.new
1011
+ fillapproverinfo_tmp.deserialize(i)
1012
+ @Approvers << fillapproverinfo_tmp
1013
+ end
1014
+ end
1015
+ unless params['Operator'].nil?
1016
+ @Operator = UserInfo.new
1017
+ @Operator.deserialize(params['Operator'])
1018
+ end
1019
+ @FillApproverType = params['FillApproverType']
1020
+ end
1021
+ end
1022
+
1023
+ # ChannelCreateFlowApprovers返回参数结构体
1024
+ class ChannelCreateFlowApproversResponse < TencentCloud::Common::AbstractModel
1025
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1026
+ # @type RequestId: String
1027
+
1028
+ attr_accessor :RequestId
1029
+
1030
+ def initialize(requestid=nil)
1031
+ @RequestId = requestid
1032
+ end
1033
+
1034
+ def deserialize(params)
1035
+ @RequestId = params['RequestId']
1036
+ end
1037
+ end
1038
+
971
1039
  # ChannelCreateFlowByFiles请求参数结构体
972
1040
  class ChannelCreateFlowByFilesRequest < TencentCloud::Common::AbstractModel
973
1041
  # @param Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 均必填。
@@ -1026,8 +1094,8 @@ module TencentCloud
1026
1094
 
1027
1095
  attr_accessor :Agent, :FlowName, :FlowDescription, :FlowApprovers, :FileIds, :Components, :Deadline, :CallbackUrl, :Unordered, :FlowType, :CustomShowMap, :CustomerData, :NeedSignReview, :ApproverVerifyType, :SignBeanTag, :CcInfos, :CcNotifyType, :AutoSignScene, :Operator
1028
1096
  extend Gem::Deprecate
1029
- deprecate :Operator, :none, 2023, 9
1030
- deprecate :Operator=, :none, 2023, 9
1097
+ deprecate :Operator, :none, 2023, 10
1098
+ deprecate :Operator=, :none, 2023, 10
1031
1099
 
1032
1100
  def initialize(agent=nil, flowname=nil, flowdescription=nil, flowapprovers=nil, fileids=nil, components=nil, deadline=nil, callbackurl=nil, unordered=nil, flowtype=nil, customshowmap=nil, customerdata=nil, needsignreview=nil, approververifytype=nil, signbeantag=nil, ccinfos=nil, ccnotifytype=nil, autosignscene=nil, operator=nil)
1033
1101
  @Agent = agent
@@ -1154,8 +1222,8 @@ module TencentCloud
1154
1222
 
1155
1223
  attr_accessor :FlowFileInfos, :FlowGroupName, :Agent, :ApproverVerifyType, :FlowGroupOptions, :Operator
1156
1224
  extend Gem::Deprecate
1157
- deprecate :Operator, :none, 2023, 9
1158
- deprecate :Operator=, :none, 2023, 9
1225
+ deprecate :Operator, :none, 2023, 10
1226
+ deprecate :Operator=, :none, 2023, 10
1159
1227
 
1160
1228
  def initialize(flowfileinfos=nil, flowgroupname=nil, agent=nil, approververifytype=nil, flowgroupoptions=nil, operator=nil)
1161
1229
  @FlowFileInfos = flowfileinfos
@@ -1418,10 +1486,10 @@ module TencentCloud
1418
1486
 
1419
1487
  attr_accessor :Agent, :FlowId, :FlowApproverInfos, :Operator, :Organization, :JumpUrl
1420
1488
  extend Gem::Deprecate
1421
- deprecate :Operator, :none, 2023, 9
1422
- deprecate :Operator=, :none, 2023, 9
1423
- deprecate :Organization, :none, 2023, 9
1424
- deprecate :Organization=, :none, 2023, 9
1489
+ deprecate :Operator, :none, 2023, 10
1490
+ deprecate :Operator=, :none, 2023, 10
1491
+ deprecate :Organization, :none, 2023, 10
1492
+ deprecate :Organization=, :none, 2023, 10
1425
1493
 
1426
1494
  def initialize(agent=nil, flowid=nil, flowapproverinfos=nil, operator=nil, organization=nil, jumpurl=nil)
1427
1495
  @Agent = agent
@@ -1518,12 +1586,12 @@ module TencentCloud
1518
1586
 
1519
1587
  attr_accessor :Agent, :TemplateId, :FlowName, :MaxFlowNum, :FlowEffectiveDay, :QrEffectiveDay, :Restrictions, :CallbackUrl, :ApproverRestrictions, :Operator, :ApproverComponentLimitTypes
1520
1588
  extend Gem::Deprecate
1521
- deprecate :CallbackUrl, :none, 2023, 9
1522
- deprecate :CallbackUrl=, :none, 2023, 9
1523
- deprecate :ApproverRestrictions, :none, 2023, 9
1524
- deprecate :ApproverRestrictions=, :none, 2023, 9
1525
- deprecate :Operator, :none, 2023, 9
1526
- deprecate :Operator=, :none, 2023, 9
1589
+ deprecate :CallbackUrl, :none, 2023, 10
1590
+ deprecate :CallbackUrl=, :none, 2023, 10
1591
+ deprecate :ApproverRestrictions, :none, 2023, 10
1592
+ deprecate :ApproverRestrictions=, :none, 2023, 10
1593
+ deprecate :Operator, :none, 2023, 10
1594
+ deprecate :Operator=, :none, 2023, 10
1527
1595
 
1528
1596
  def initialize(agent=nil, templateid=nil, flowname=nil, maxflownum=nil, floweffectiveday=nil, qreffectiveday=nil, restrictions=nil, callbackurl=nil, approverrestrictions=nil, operator=nil, approvercomponentlimittypes=nil)
1529
1597
  @Agent = agent
@@ -1607,6 +1675,68 @@ module TencentCloud
1607
1675
  end
1608
1676
  end
1609
1677
 
1678
+ # ChannelCreateOrganizationBatchSignUrl请求参数结构体
1679
+ class ChannelCreateOrganizationBatchSignUrlRequest < TencentCloud::Common::AbstractModel
1680
+ # @param Agent: 关于渠道应用的相关信息,包括子客企业及应用编、号等详细内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
1681
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
1682
+ # @param FlowIds: 请指定需执行批量签署的流程ID,数量范围为1-100。 您可登录腾讯电子签控制台,浏览 "合同"->"合同中心" 以查阅某一合同的FlowId(在页面中显示为合同ID)。 用户将利用链接对这些合同实施批量操作。
1683
+ # @type FlowIds: Array
1684
+ # @param OpenId: 第三方应用平台的用户openid。 您可登录腾讯电子签控制台,在 "更多能力"->"组织管理" 中查阅某位员工的OpenId。 OpenId必须是传入合同(FlowId)中的签署人。 - 1. 若OpenId为空,Name和Mobile 必须提供。 - 2. 若OpenId 与 Name,Mobile均存在,将优先采用OpenId对应的员工。
1685
+ # @type OpenId: String
1686
+ # @param Name: 签署方经办人的姓名。
1687
+ # 经办人的姓名将用于身份认证和电子签名,请确保填写的姓名为签署方的真实姓名,而非昵称等代名。
1688
+
1689
+ # 注:`请确保和合同中填入的一致`
1690
+ # @type Name: String
1691
+ # @param Mobile: 员工手机号,必须与姓名一起使用。 如果OpenId为空,则此字段不能为空。同时,姓名和手机号码必须与传入合同(FlowId)中的签署人信息一致。
1692
+ # @type Mobile: String
1693
+
1694
+ attr_accessor :Agent, :FlowIds, :OpenId, :Name, :Mobile
1695
+
1696
+ def initialize(agent=nil, flowids=nil, openid=nil, name=nil, mobile=nil)
1697
+ @Agent = agent
1698
+ @FlowIds = flowids
1699
+ @OpenId = openid
1700
+ @Name = name
1701
+ @Mobile = mobile
1702
+ end
1703
+
1704
+ def deserialize(params)
1705
+ unless params['Agent'].nil?
1706
+ @Agent = Agent.new
1707
+ @Agent.deserialize(params['Agent'])
1708
+ end
1709
+ @FlowIds = params['FlowIds']
1710
+ @OpenId = params['OpenId']
1711
+ @Name = params['Name']
1712
+ @Mobile = params['Mobile']
1713
+ end
1714
+ end
1715
+
1716
+ # ChannelCreateOrganizationBatchSignUrl返回参数结构体
1717
+ class ChannelCreateOrganizationBatchSignUrlResponse < TencentCloud::Common::AbstractModel
1718
+ # @param SignUrl: 批量签署入口链接,用户可使用这个链接跳转到控制台页面对合同进行签署操作。
1719
+ # @type SignUrl: String
1720
+ # @param ExpiredTime: 链接过期时间以 Unix 时间戳格式表示,从生成链接时间起,往后7天有效期。过期后短链将失效,无法打开。
1721
+ # @type ExpiredTime: Integer
1722
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1723
+ # @type RequestId: String
1724
+
1725
+ attr_accessor :SignUrl, :ExpiredTime, :RequestId
1726
+
1727
+ def initialize(signurl=nil, expiredtime=nil, requestid=nil)
1728
+ @SignUrl = signurl
1729
+ @ExpiredTime = expiredtime
1730
+ @RequestId = requestid
1731
+ end
1732
+
1733
+ def deserialize(params)
1734
+ @SignUrl = params['SignUrl']
1735
+ @ExpiredTime = params['ExpiredTime']
1736
+ @RequestId = params['RequestId']
1737
+ end
1738
+ end
1739
+
1610
1740
  # ChannelCreateOrganizationModifyQrCode请求参数结构体
1611
1741
  class ChannelCreateOrganizationModifyQrCodeRequest < TencentCloud::Common::AbstractModel
1612
1742
  # @param Agent: 应用相关信息。 此接口Agent.AppId 必填。
@@ -1675,12 +1805,12 @@ module TencentCloud
1675
1805
 
1676
1806
  attr_accessor :ResourceId, :ResourceType, :FlowInfo, :Agent, :FlowOption, :FlowApproverList, :FlowId, :NeedPreview, :Organization, :Operator
1677
1807
  extend Gem::Deprecate
1678
- deprecate :NeedPreview, :none, 2023, 9
1679
- deprecate :NeedPreview=, :none, 2023, 9
1680
- deprecate :Organization, :none, 2023, 9
1681
- deprecate :Organization=, :none, 2023, 9
1682
- deprecate :Operator, :none, 2023, 9
1683
- deprecate :Operator=, :none, 2023, 9
1808
+ deprecate :NeedPreview, :none, 2023, 10
1809
+ deprecate :NeedPreview=, :none, 2023, 10
1810
+ deprecate :Organization, :none, 2023, 10
1811
+ deprecate :Organization=, :none, 2023, 10
1812
+ deprecate :Operator, :none, 2023, 10
1813
+ deprecate :Operator=, :none, 2023, 10
1684
1814
 
1685
1815
  def initialize(resourceid=nil, resourcetype=nil, flowinfo=nil, agent=nil, flowoption=nil, flowapproverlist=nil, flowid=nil, needpreview=nil, organization=nil, operator=nil)
1686
1816
  @ResourceId = resourceid
@@ -1858,10 +1988,10 @@ module TencentCloud
1858
1988
 
1859
1989
  attr_accessor :Agent, :NeedRelievedFlowId, :ReliveInfo, :ReleasedApprovers, :CallbackUrl, :Organization, :Operator, :Deadline
1860
1990
  extend Gem::Deprecate
1861
- deprecate :Organization, :none, 2023, 9
1862
- deprecate :Organization=, :none, 2023, 9
1863
- deprecate :Operator, :none, 2023, 9
1864
- deprecate :Operator=, :none, 2023, 9
1991
+ deprecate :Organization, :none, 2023, 10
1992
+ deprecate :Organization=, :none, 2023, 10
1993
+ deprecate :Operator, :none, 2023, 10
1994
+ deprecate :Operator=, :none, 2023, 10
1865
1995
 
1866
1996
  def initialize(agent=nil, needrelievedflowid=nil, reliveinfo=nil, releasedapprovers=nil, callbackurl=nil, organization=nil, operator=nil, deadline=nil)
1867
1997
  @Agent = agent
@@ -1999,10 +2129,10 @@ module TencentCloud
1999
2129
 
2000
2130
  attr_accessor :Agent, :SealId, :UserIds, :Operator, :Organization
2001
2131
  extend Gem::Deprecate
2002
- deprecate :Operator, :none, 2023, 9
2003
- deprecate :Operator=, :none, 2023, 9
2004
- deprecate :Organization, :none, 2023, 9
2005
- deprecate :Organization=, :none, 2023, 9
2132
+ deprecate :Operator, :none, 2023, 10
2133
+ deprecate :Operator=, :none, 2023, 10
2134
+ deprecate :Organization, :none, 2023, 10
2135
+ deprecate :Organization=, :none, 2023, 10
2006
2136
 
2007
2137
  def initialize(agent=nil, sealid=nil, userids=nil, operator=nil, organization=nil)
2008
2138
  @Agent = agent
@@ -2160,8 +2290,8 @@ module TencentCloud
2160
2290
 
2161
2291
  attr_accessor :Agent, :RoleIds, :UserIds, :OpenIds, :Operator
2162
2292
  extend Gem::Deprecate
2163
- deprecate :Operator, :none, 2023, 9
2164
- deprecate :Operator=, :none, 2023, 9
2293
+ deprecate :Operator, :none, 2023, 10
2294
+ deprecate :Operator=, :none, 2023, 10
2165
2295
 
2166
2296
  def initialize(agent=nil, roleids=nil, userids=nil, openids=nil, operator=nil)
2167
2297
  @Agent = agent
@@ -2314,8 +2444,8 @@ module TencentCloud
2314
2444
 
2315
2445
  attr_accessor :Agent, :RoleId, :UserIds, :Operator, :OpenIds
2316
2446
  extend Gem::Deprecate
2317
- deprecate :Operator, :none, 2023, 9
2318
- deprecate :Operator=, :none, 2023, 9
2447
+ deprecate :Operator, :none, 2023, 10
2448
+ deprecate :Operator=, :none, 2023, 10
2319
2449
 
2320
2450
  def initialize(agent=nil, roleid=nil, userids=nil, operator=nil, openids=nil)
2321
2451
  @Agent = agent
@@ -2376,10 +2506,10 @@ module TencentCloud
2376
2506
 
2377
2507
  attr_accessor :Agent, :SealId, :UserIds, :Organization, :Operator
2378
2508
  extend Gem::Deprecate
2379
- deprecate :Organization, :none, 2023, 9
2380
- deprecate :Organization=, :none, 2023, 9
2381
- deprecate :Operator, :none, 2023, 9
2382
- deprecate :Operator=, :none, 2023, 9
2509
+ deprecate :Organization, :none, 2023, 10
2510
+ deprecate :Organization=, :none, 2023, 10
2511
+ deprecate :Operator, :none, 2023, 10
2512
+ deprecate :Operator=, :none, 2023, 10
2383
2513
 
2384
2514
  def initialize(agent=nil, sealid=nil, userids=nil, organization=nil, operator=nil)
2385
2515
  @Agent = agent
@@ -2440,8 +2570,8 @@ module TencentCloud
2440
2570
 
2441
2571
  attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
2442
2572
  extend Gem::Deprecate
2443
- deprecate :Operator, :none, 2023, 9
2444
- deprecate :Operator=, :none, 2023, 9
2573
+ deprecate :Operator, :none, 2023, 10
2574
+ deprecate :Operator=, :none, 2023, 10
2445
2575
 
2446
2576
  def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
2447
2577
  @Agent = agent
@@ -2659,8 +2789,8 @@ module TencentCloud
2659
2789
 
2660
2790
  attr_accessor :Agent, :Limit, :Filters, :Offset, :Operator
2661
2791
  extend Gem::Deprecate
2662
- deprecate :Operator, :none, 2023, 9
2663
- deprecate :Operator=, :none, 2023, 9
2792
+ deprecate :Operator, :none, 2023, 10
2793
+ deprecate :Operator=, :none, 2023, 10
2664
2794
 
2665
2795
  def initialize(agent=nil, limit=nil, filters=nil, offset=nil, operator=nil)
2666
2796
  @Agent = agent
@@ -2869,10 +2999,10 @@ module TencentCloud
2869
2999
 
2870
3000
  attr_accessor :Agent, :TaskId, :Operator, :Organization
2871
3001
  extend Gem::Deprecate
2872
- deprecate :Operator, :none, 2023, 9
2873
- deprecate :Operator=, :none, 2023, 9
2874
- deprecate :Organization, :none, 2023, 9
2875
- deprecate :Organization=, :none, 2023, 9
3002
+ deprecate :Operator, :none, 2023, 10
3003
+ deprecate :Operator=, :none, 2023, 10
3004
+ deprecate :Organization, :none, 2023, 10
3005
+ deprecate :Organization=, :none, 2023, 10
2876
3006
 
2877
3007
  def initialize(agent=nil, taskid=nil, operator=nil, organization=nil)
2878
3008
  @Agent = agent
@@ -2929,8 +3059,8 @@ module TencentCloud
2929
3059
 
2930
3060
  attr_accessor :TaskId, :TaskStatus, :TaskMessage, :ResourceId, :PreviewUrl, :RequestId
2931
3061
  extend Gem::Deprecate
2932
- deprecate :PreviewUrl, :none, 2023, 9
2933
- deprecate :PreviewUrl=, :none, 2023, 9
3062
+ deprecate :PreviewUrl, :none, 2023, 10
3063
+ deprecate :PreviewUrl=, :none, 2023, 10
2934
3064
 
2935
3065
  def initialize(taskid=nil, taskstatus=nil, taskmessage=nil, resourceid=nil, previewurl=nil, requestid=nil)
2936
3066
  @TaskId = taskid
@@ -3067,8 +3197,8 @@ module TencentCloud
3067
3197
 
3068
3198
  attr_accessor :Agent, :Status, :SealId, :Reason, :Operator
3069
3199
  extend Gem::Deprecate
3070
- deprecate :Operator, :none, 2023, 9
3071
- deprecate :Operator=, :none, 2023, 9
3200
+ deprecate :Operator, :none, 2023, 10
3201
+ deprecate :Operator=, :none, 2023, 10
3072
3202
 
3073
3203
  def initialize(agent=nil, status=nil, sealid=nil, reason=nil, operator=nil)
3074
3204
  @Agent = agent
@@ -3120,8 +3250,8 @@ module TencentCloud
3120
3250
 
3121
3251
  attr_accessor :FlowId, :Agent, :Operator
3122
3252
  extend Gem::Deprecate
3123
- deprecate :Operator, :none, 2023, 9
3124
- deprecate :Operator=, :none, 2023, 9
3253
+ deprecate :Operator, :none, 2023, 10
3254
+ deprecate :Operator=, :none, 2023, 10
3125
3255
 
3126
3256
  def initialize(flowid=nil, agent=nil, operator=nil)
3127
3257
  @FlowId = flowid
@@ -3617,8 +3747,8 @@ module TencentCloud
3617
3747
 
3618
3748
  attr_accessor :Agent, :FlowId, :Operator
3619
3749
  extend Gem::Deprecate
3620
- deprecate :Operator, :none, 2023, 9
3621
- deprecate :Operator=, :none, 2023, 9
3750
+ deprecate :Operator, :none, 2023, 10
3751
+ deprecate :Operator=, :none, 2023, 10
3622
3752
 
3623
3753
  def initialize(agent=nil, flowid=nil, operator=nil)
3624
3754
  @Agent = agent
@@ -3676,27 +3806,48 @@ module TencentCloud
3676
3806
 
3677
3807
  # CreateChannelOrganizationInfoChangeUrl请求参数结构体
3678
3808
  class CreateChannelOrganizationInfoChangeUrlRequest < TencentCloud::Common::AbstractModel
3809
+ # @param Agent: 关于渠道应用的相关信息,包括子客企业及应用编、号等详细内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
3810
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
3811
+ # @param ChangeType: 企业信息变更类型,可选类型如下:
3812
+ # <ul><li>**1**:企业超管变更</li><li>**2**:企业基础信息变更</li></ul>
3813
+ # @type ChangeType: Integer
3679
3814
 
3815
+ attr_accessor :Agent, :ChangeType
3680
3816
 
3681
- def initialize()
3817
+ def initialize(agent=nil, changetype=nil)
3818
+ @Agent = agent
3819
+ @ChangeType = changetype
3682
3820
  end
3683
3821
 
3684
3822
  def deserialize(params)
3823
+ unless params['Agent'].nil?
3824
+ @Agent = Agent.new
3825
+ @Agent.deserialize(params['Agent'])
3826
+ end
3827
+ @ChangeType = params['ChangeType']
3685
3828
  end
3686
3829
  end
3687
3830
 
3688
3831
  # CreateChannelOrganizationInfoChangeUrl返回参数结构体
3689
3832
  class CreateChannelOrganizationInfoChangeUrlResponse < TencentCloud::Common::AbstractModel
3833
+ # @param Url: 创建的企业信息变更链接。
3834
+ # @type Url: String
3835
+ # @param ExpiredTime: 链接过期时间。链接7天有效。
3836
+ # @type ExpiredTime: Integer
3690
3837
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3691
3838
  # @type RequestId: String
3692
3839
 
3693
- attr_accessor :RequestId
3840
+ attr_accessor :Url, :ExpiredTime, :RequestId
3694
3841
 
3695
- def initialize(requestid=nil)
3842
+ def initialize(url=nil, expiredtime=nil, requestid=nil)
3843
+ @Url = url
3844
+ @ExpiredTime = expiredtime
3696
3845
  @RequestId = requestid
3697
3846
  end
3698
3847
 
3699
3848
  def deserialize(params)
3849
+ @Url = params['Url']
3850
+ @ExpiredTime = params['ExpiredTime']
3700
3851
  @RequestId = params['RequestId']
3701
3852
  end
3702
3853
  end
@@ -3767,8 +3918,8 @@ module TencentCloud
3767
3918
 
3768
3919
  attr_accessor :Agent, :ProxyOrganizationName, :UniformSocialCreditCode, :ProxyOperatorName, :Module, :ModuleId, :MenuStatus, :Endpoint, :AutoJumpBackEvent, :AuthorizationTypes, :Operator
3769
3920
  extend Gem::Deprecate
3770
- deprecate :Operator, :none, 2023, 9
3771
- deprecate :Operator=, :none, 2023, 9
3921
+ deprecate :Operator, :none, 2023, 10
3922
+ deprecate :Operator=, :none, 2023, 10
3772
3923
 
3773
3924
  def initialize(agent=nil, proxyorganizationname=nil, uniformsocialcreditcode=nil, proxyoperatorname=nil, _module=nil, moduleid=nil, menustatus=nil, endpoint=nil, autojumpbackevent=nil, authorizationtypes=nil, operator=nil)
3774
3925
  @Agent = agent
@@ -3895,8 +4046,8 @@ module TencentCloud
3895
4046
 
3896
4047
  attr_accessor :Agent, :FlowInfos, :NeedPreview, :PreviewType, :Operator
3897
4048
  extend Gem::Deprecate
3898
- deprecate :Operator, :none, 2023, 9
3899
- deprecate :Operator=, :none, 2023, 9
4049
+ deprecate :Operator, :none, 2023, 10
4050
+ deprecate :Operator=, :none, 2023, 10
3900
4051
 
3901
4052
  def initialize(agent=nil, flowinfos=nil, needpreview=nil, previewtype=nil, operator=nil)
3902
4053
  @Agent = agent
@@ -4022,8 +4173,8 @@ module TencentCloud
4022
4173
 
4023
4174
  attr_accessor :Agent, :SealName, :SealImage, :Operator, :GenerateSource, :SealType, :SealHorizontalText, :SealStyle, :SealSize
4024
4175
  extend Gem::Deprecate
4025
- deprecate :Operator, :none, 2023, 9
4026
- deprecate :Operator=, :none, 2023, 9
4176
+ deprecate :Operator, :none, 2023, 10
4177
+ deprecate :Operator=, :none, 2023, 10
4027
4178
 
4028
4179
  def initialize(agent=nil, sealname=nil, sealimage=nil, operator=nil, generatesource=nil, sealtype=nil, sealhorizontaltext=nil, sealstyle=nil, sealsize=nil)
4029
4180
  @Agent = agent
@@ -4105,6 +4256,7 @@ module TencentCloud
4105
4256
  # - NOT_CHANNEL:非第三方平台子客企业企业
4106
4257
  # - PERSON:个人
4107
4258
  # - FOLLOWER:关注方,目前是合同抄送方
4259
+ # - RECIPIENT:获取RecipientId对应的签署链接,可用于生成动态签署人补充链接
4108
4260
  # @type GenerateType: String
4109
4261
  # @param OrganizationName: 非第三方平台子客企业参与方的企业名称,GenerateType为"NOT_CHANNEL"时必填
4110
4262
  # @type OrganizationName: String
@@ -4131,13 +4283,13 @@ module TencentCloud
4131
4283
  # - 2:合同签署页面更多操作的转他人处理按钮
4132
4284
  # - 3:签署成功页的查看详情按钮
4133
4285
  # @type Hides: Array
4134
- # @param RecipientIds: 签署节点ID,用于补充动态签署人,使用此参数需要与flow_ids数量一致
4286
+ # @param RecipientIds: 签署节点ID,用于补充动态签署人,使用此参数需要与flow_ids数量一致并且一一对应
4135
4287
  # @type RecipientIds: Array
4136
4288
 
4137
4289
  attr_accessor :Agent, :FlowIds, :FlowGroupId, :Endpoint, :GenerateType, :OrganizationName, :Name, :Mobile, :OrganizationOpenId, :OpenId, :AutoJumpBack, :JumpUrl, :Operator, :Hides, :RecipientIds
4138
4290
  extend Gem::Deprecate
4139
- deprecate :Operator, :none, 2023, 9
4140
- deprecate :Operator=, :none, 2023, 9
4291
+ deprecate :Operator, :none, 2023, 10
4292
+ deprecate :Operator=, :none, 2023, 10
4141
4293
 
4142
4294
  def initialize(agent=nil, flowids=nil, flowgroupid=nil, endpoint=nil, generatetype=nil, organizationname=nil, name=nil, mobile=nil, organizationopenid=nil, openid=nil, autojumpback=nil, jumpurl=nil, operator=nil, hides=nil, recipientids=nil)
4143
4295
  @Agent = agent
@@ -4246,8 +4398,8 @@ module TencentCloud
4246
4398
 
4247
4399
  attr_accessor :Agent, :ReportId, :Operator
4248
4400
  extend Gem::Deprecate
4249
- deprecate :Operator, :none, 2023, 9
4250
- deprecate :Operator=, :none, 2023, 9
4401
+ deprecate :Operator, :none, 2023, 10
4402
+ deprecate :Operator=, :none, 2023, 10
4251
4403
 
4252
4404
  def initialize(agent=nil, reportid=nil, operator=nil)
4253
4405
  @Agent = agent
@@ -4361,8 +4513,8 @@ module TencentCloud
4361
4513
 
4362
4514
  attr_accessor :Agent, :FlowIds, :FlowGroupId, :Operator
4363
4515
  extend Gem::Deprecate
4364
- deprecate :Operator, :none, 2023, 9
4365
- deprecate :Operator=, :none, 2023, 9
4516
+ deprecate :Operator, :none, 2023, 10
4517
+ deprecate :Operator=, :none, 2023, 10
4366
4518
 
4367
4519
  def initialize(agent=nil, flowids=nil, flowgroupid=nil, operator=nil)
4368
4520
  @Agent = agent
@@ -4443,8 +4595,8 @@ module TencentCloud
4443
4595
 
4444
4596
  attr_accessor :Agent, :FlowIds, :Operator
4445
4597
  extend Gem::Deprecate
4446
- deprecate :Operator, :none, 2023, 9
4447
- deprecate :Operator=, :none, 2023, 9
4598
+ deprecate :Operator, :none, 2023, 10
4599
+ deprecate :Operator=, :none, 2023, 10
4448
4600
 
4449
4601
  def initialize(agent=nil, flowids=nil, operator=nil)
4450
4602
  @Agent = agent
@@ -4534,8 +4686,8 @@ module TencentCloud
4534
4686
 
4535
4687
  attr_accessor :Agent, :TemplateId, :ContentType, :Limit, :Offset, :QueryAllComponents, :TemplateName, :WithPreviewUrl, :WithPdfUrl, :ChannelTemplateId, :Operator
4536
4688
  extend Gem::Deprecate
4537
- deprecate :Operator, :none, 2023, 9
4538
- deprecate :Operator=, :none, 2023, 9
4689
+ deprecate :Operator, :none, 2023, 10
4690
+ deprecate :Operator=, :none, 2023, 10
4539
4691
 
4540
4692
  def initialize(agent=nil, templateid=nil, contenttype=nil, limit=nil, offset=nil, queryallcomponents=nil, templatename=nil, withpreviewurl=nil, withpdfurl=nil, channeltemplateid=nil, operator=nil)
4541
4693
  @Agent = agent
@@ -4633,8 +4785,8 @@ module TencentCloud
4633
4785
 
4634
4786
  attr_accessor :Agent, :StartDate, :EndDate, :NeedAggregate, :Limit, :Offset, :Operator
4635
4787
  extend Gem::Deprecate
4636
- deprecate :Operator, :none, 2023, 9
4637
- deprecate :Operator=, :none, 2023, 9
4788
+ deprecate :Operator, :none, 2023, 10
4789
+ deprecate :Operator=, :none, 2023, 10
4638
4790
 
4639
4791
  def initialize(agent=nil, startdate=nil, enddate=nil, needaggregate=nil, limit=nil, offset=nil, operator=nil)
4640
4792
  @Agent = agent
@@ -4778,6 +4930,47 @@ module TencentCloud
4778
4930
  end
4779
4931
  end
4780
4932
 
4933
+ # 指定补充签署人信息
4934
+ # - RecipientId 必须指定
4935
+ class FillApproverInfo < TencentCloud::Common::AbstractModel
4936
+ # @param RecipientId: 签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。
4937
+ # @type RecipientId: String
4938
+ # @param OpenId: 指定企业经办签署人OpenId
4939
+ # @type OpenId: String
4940
+ # @param ApproverName: 签署人姓名
4941
+ # @type ApproverName: String
4942
+ # @param ApproverMobile: 签署人手机号码
4943
+ # @type ApproverMobile: String
4944
+ # @param OrganizationName: 企业名称
4945
+ # @type OrganizationName: String
4946
+ # @param OrganizationOpenId: 企业OpenId
4947
+ # @type OrganizationOpenId: String
4948
+ # @param NotChannelOrganization: 签署企业非渠道子客,默认为false,即表示同一渠道下的企业;如果为true,则目前表示接收方企业为SaaS企业, 为渠道子客时,organization_open_id+open_id 必传
4949
+ # @type NotChannelOrganization: String
4950
+
4951
+ attr_accessor :RecipientId, :OpenId, :ApproverName, :ApproverMobile, :OrganizationName, :OrganizationOpenId, :NotChannelOrganization
4952
+
4953
+ def initialize(recipientid=nil, openid=nil, approvername=nil, approvermobile=nil, organizationname=nil, organizationopenid=nil, notchannelorganization=nil)
4954
+ @RecipientId = recipientid
4955
+ @OpenId = openid
4956
+ @ApproverName = approvername
4957
+ @ApproverMobile = approvermobile
4958
+ @OrganizationName = organizationname
4959
+ @OrganizationOpenId = organizationopenid
4960
+ @NotChannelOrganization = notchannelorganization
4961
+ end
4962
+
4963
+ def deserialize(params)
4964
+ @RecipientId = params['RecipientId']
4965
+ @OpenId = params['OpenId']
4966
+ @ApproverName = params['ApproverName']
4967
+ @ApproverMobile = params['ApproverMobile']
4968
+ @OrganizationName = params['OrganizationName']
4969
+ @OrganizationOpenId = params['OrganizationOpenId']
4970
+ @NotChannelOrganization = params['NotChannelOrganization']
4971
+ end
4972
+ end
4973
+
4781
4974
  # 文档内的填充控件返回结构体,返回控件的基本信息和填写内容值
4782
4975
  class FilledComponent < TencentCloud::Common::AbstractModel
4783
4976
  # @param ComponentId: 控件Id
@@ -5010,8 +5203,8 @@ module TencentCloud
5010
5203
 
5011
5204
  attr_accessor :Name, :IdCardType, :IdCardNumber, :Mobile, :OrganizationName, :NotChannelOrganization, :OpenId, :OrganizationOpenId, :ApproverType, :RecipientId, :Deadline, :CallbackUrl, :SignComponents, :ComponentLimitType, :PreReadTime, :JumpUrl, :ApproverOption, :ApproverNeedSignReview, :ApproverVerifyTypes, :ApproverSignTypes, :SignId, :NotifyType, :AddSignComponentsLimits, :ApproverRoleName
5012
5205
  extend Gem::Deprecate
5013
- deprecate :CallbackUrl, :none, 2023, 9
5014
- deprecate :CallbackUrl=, :none, 2023, 9
5206
+ deprecate :CallbackUrl, :none, 2023, 10
5207
+ deprecate :CallbackUrl=, :none, 2023, 10
5015
5208
 
5016
5209
  def initialize(name=nil, idcardtype=nil, idcardnumber=nil, mobile=nil, organizationname=nil, notchannelorganization=nil, openid=nil, organizationopenid=nil, approvertype=nil, recipientid=nil, deadline=nil, callbackurl=nil, signcomponents=nil, componentlimittype=nil, prereadtime=nil, jumpurl=nil, approveroption=nil, approverneedsignreview=nil, approververifytypes=nil, approversigntypes=nil, signid=nil, notifytype=nil, addsigncomponentslimits=nil, approverrolename=nil)
5017
5210
  @Name = name
@@ -5613,8 +5806,8 @@ module TencentCloud
5613
5806
 
5614
5807
  attr_accessor :Agent, :DownLoadFlows, :Operator
5615
5808
  extend Gem::Deprecate
5616
- deprecate :Operator, :none, 2023, 9
5617
- deprecate :Operator=, :none, 2023, 9
5809
+ deprecate :Operator, :none, 2023, 10
5810
+ deprecate :Operator=, :none, 2023, 10
5618
5811
 
5619
5812
  def initialize(agent=nil, downloadflows=nil, operator=nil)
5620
5813
  @Agent = agent
@@ -5822,8 +6015,8 @@ module TencentCloud
5822
6015
 
5823
6016
  attr_accessor :Agent, :OperateType, :TemplateId, :ProxyOrganizationOpenIds, :AuthTag, :Available, :Operator
5824
6017
  extend Gem::Deprecate
5825
- deprecate :Operator, :none, 2023, 9
5826
- deprecate :Operator=, :none, 2023, 9
6018
+ deprecate :Operator, :none, 2023, 10
6019
+ deprecate :Operator=, :none, 2023, 10
5827
6020
 
5828
6021
  def initialize(agent=nil, operatetype=nil, templateid=nil, proxyorganizationopenids=nil, authtag=nil, available=nil, operator=nil)
5829
6022
  @Agent = agent
@@ -5925,10 +6118,10 @@ module TencentCloud
5925
6118
 
5926
6119
  attr_accessor :OrganizationOpenId, :OrganizationId, :Channel, :ClientIp, :ProxyIp
5927
6120
  extend Gem::Deprecate
5928
- deprecate :ClientIp, :none, 2023, 9
5929
- deprecate :ClientIp=, :none, 2023, 9
5930
- deprecate :ProxyIp, :none, 2023, 9
5931
- deprecate :ProxyIp=, :none, 2023, 9
6121
+ deprecate :ClientIp, :none, 2023, 10
6122
+ deprecate :ClientIp=, :none, 2023, 10
6123
+ deprecate :ProxyIp, :none, 2023, 10
6124
+ deprecate :ProxyIp=, :none, 2023, 10
5932
6125
 
5933
6126
  def initialize(organizationopenid=nil, organizationid=nil, channel=nil, clientip=nil, proxyip=nil)
5934
6127
  @OrganizationOpenId = organizationopenid
@@ -6141,8 +6334,8 @@ module TencentCloud
6141
6334
 
6142
6335
  attr_accessor :Agent, :FlowInfos, :JumpUrl, :Operator
6143
6336
  extend Gem::Deprecate
6144
- deprecate :Operator, :none, 2023, 9
6145
- deprecate :Operator=, :none, 2023, 9
6337
+ deprecate :Operator, :none, 2023, 10
6338
+ deprecate :Operator=, :none, 2023, 10
6146
6339
 
6147
6340
  def initialize(agent=nil, flowinfos=nil, jumpurl=nil, operator=nil)
6148
6341
  @Agent = agent
@@ -6583,8 +6776,8 @@ module TencentCloud
6583
6776
 
6584
6777
  attr_accessor :SignUrl, :Deadline, :SignOrder, :SignId, :CustomUserId, :Name, :Mobile, :OrganizationName, :ApproverType, :IdCardNumber, :FlowId, :OpenId, :FlowGroupId, :SignQrcodeUrl
6585
6778
  extend Gem::Deprecate
6586
- deprecate :CustomUserId, :none, 2023, 9
6587
- deprecate :CustomUserId=, :none, 2023, 9
6779
+ deprecate :CustomUserId, :none, 2023, 10
6780
+ deprecate :CustomUserId=, :none, 2023, 10
6588
6781
 
6589
6782
  def initialize(signurl=nil, deadline=nil, signorder=nil, signid=nil, customuserid=nil, name=nil, mobile=nil, organizationname=nil, approvertype=nil, idcardnumber=nil, flowid=nil, openid=nil, flowgroupid=nil, signqrcodeurl=nil)
6590
6783
  @SignUrl = signurl
@@ -6748,8 +6941,8 @@ module TencentCloud
6748
6941
 
6749
6942
  attr_accessor :Agent, :OperatorType, :ProxyOrganizationOperators, :Operator
6750
6943
  extend Gem::Deprecate
6751
- deprecate :Operator, :none, 2023, 9
6752
- deprecate :Operator=, :none, 2023, 9
6944
+ deprecate :Operator, :none, 2023, 10
6945
+ deprecate :Operator=, :none, 2023, 10
6753
6946
 
6754
6947
  def initialize(agent=nil, operatortype=nil, proxyorganizationoperators=nil, operator=nil)
6755
6948
  @Agent = agent
@@ -6836,8 +7029,8 @@ module TencentCloud
6836
7029
 
6837
7030
  attr_accessor :Agent, :ProxyOrganizationName, :BusinessLicense, :UniformSocialCreditCode, :ProxyLegalName, :Operator, :ProxyLegalIdCardType, :ProxyLegalIdCardNumber
6838
7031
  extend Gem::Deprecate
6839
- deprecate :Operator, :none, 2023, 9
6840
- deprecate :Operator=, :none, 2023, 9
7032
+ deprecate :Operator, :none, 2023, 10
7033
+ deprecate :Operator=, :none, 2023, 10
6841
7034
 
6842
7035
  def initialize(agent=nil, proxyorganizationname=nil, businesslicense=nil, uniformsocialcreditcode=nil, proxylegalname=nil, operator=nil, proxylegalidcardtype=nil, proxylegalidcardnumber=nil)
6843
7036
  @Agent = agent
@@ -6967,8 +7160,8 @@ module TencentCloud
6967
7160
 
6968
7161
  attr_accessor :TemplateId, :TemplateName, :Description, :Components, :Recipients, :SignComponents, :TemplateType, :IsPromoter, :Creator, :CreatedOn, :PreviewUrl, :PdfUrl, :ChannelTemplateId, :ChannelTemplateName, :ChannelAutoSave, :TemplateVersion, :Available
6969
7162
  extend Gem::Deprecate
6970
- deprecate :IsPromoter, :none, 2023, 9
6971
- deprecate :IsPromoter=, :none, 2023, 9
7163
+ deprecate :IsPromoter, :none, 2023, 10
7164
+ deprecate :IsPromoter=, :none, 2023, 10
6972
7165
 
6973
7166
  def initialize(templateid=nil, templatename=nil, description=nil, components=nil, recipients=nil, signcomponents=nil, templatetype=nil, ispromoter=nil, creator=nil, createdon=nil, previewurl=nil, pdfurl=nil, channeltemplateid=nil, channeltemplatename=nil, channelautosave=nil, templateversion=nil, available=nil)
6974
7167
  @TemplateId = templateid
@@ -7067,8 +7260,8 @@ module TencentCloud
7067
7260
 
7068
7261
  attr_accessor :Agent, :BusinessType, :FileInfos, :Operator
7069
7262
  extend Gem::Deprecate
7070
- deprecate :Operator, :none, 2023, 9
7071
- deprecate :Operator=, :none, 2023, 9
7263
+ deprecate :Operator, :none, 2023, 10
7264
+ deprecate :Operator=, :none, 2023, 10
7072
7265
 
7073
7266
  def initialize(agent=nil, businesstype=nil, fileinfos=nil, operator=nil)
7074
7267
  @Agent = agent
@@ -7181,14 +7374,14 @@ module TencentCloud
7181
7374
 
7182
7375
  attr_accessor :OpenId, :Channel, :CustomUserId, :ClientIp, :ProxyIp
7183
7376
  extend Gem::Deprecate
7184
- deprecate :Channel, :none, 2023, 9
7185
- deprecate :Channel=, :none, 2023, 9
7186
- deprecate :CustomUserId, :none, 2023, 9
7187
- deprecate :CustomUserId=, :none, 2023, 9
7188
- deprecate :ClientIp, :none, 2023, 9
7189
- deprecate :ClientIp=, :none, 2023, 9
7190
- deprecate :ProxyIp, :none, 2023, 9
7191
- deprecate :ProxyIp=, :none, 2023, 9
7377
+ deprecate :Channel, :none, 2023, 10
7378
+ deprecate :Channel=, :none, 2023, 10
7379
+ deprecate :CustomUserId, :none, 2023, 10
7380
+ deprecate :CustomUserId=, :none, 2023, 10
7381
+ deprecate :ClientIp, :none, 2023, 10
7382
+ deprecate :ClientIp=, :none, 2023, 10
7383
+ deprecate :ProxyIp, :none, 2023, 10
7384
+ deprecate :ProxyIp=, :none, 2023, 10
7192
7385
 
7193
7386
  def initialize(openid=nil, channel=nil, customuserid=nil, clientip=nil, proxyip=nil)
7194
7387
  @OpenId = openid
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-essbasic
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.670
4
+ version: 3.0.672
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-28 00:00:00.000000000 Z
11
+ date: 2023-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common