tencentcloud-sdk-ess 3.0.671 → 3.0.673

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1c47f5870d765374d5cacb962bb8352b58d52ac9
4
- data.tar.gz: 042aa613ec0950aed34a244eec4cca627bc447ce
3
+ metadata.gz: 4c31ca9622fbb2c379c7caa09aba758d32309d99
4
+ data.tar.gz: f8512d54548bfb3bdad4239009a50311b7e0fc39
5
5
  SHA512:
6
- metadata.gz: c350b5ff00740938006e405e22619294032c8ba8f607eef2e773b1a82af4371be51421149fbfd3b2415fc97481c2c064ae7e674b300c886cddcfa6853dd5c584
7
- data.tar.gz: 4093e4b6fdbaf5b7500543516a07b907f7ceaaf453a05a648bbcac693accd5d64c2a44d57d0753b4f5a45d3f0f752d0c09f59b63a4f754f0d3090a11f2013a10
6
+ metadata.gz: c728e54152a8fdf167a357ef6b812e5590c0898735dfc2a6b9a280cf759248fbee27e157b063c5d7b4b5dc8d798a7812cedcf4c979ea1b3ca97e0bdded644134
7
+ data.tar.gz: 8983e39991d17bdd49c187345cb12bad7d654f18be091fb5fab71c66fc98f8cdcc7e6327114cab5bc41573915327e25940808a3978523131d028c07625900bb6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.671
1
+ 3.0.673
@@ -594,7 +594,8 @@ module TencentCloud
594
594
 
595
595
  # 适用场景1:创建当前企业的自定义SaaS角色或集团角色,并且创建时不进行权限的设置(PermissionGroups 参数不传),角色中的权限内容可通过控制台编辑角色或通过接口 ModifyIntegrationRole 完成更新。
596
596
 
597
- # 适用场景2:创建当前企业的自定义SaaS角色或集团角色,并且创建时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。
597
+ # 适用场景2:创建当前企业的自定义SaaS角色或集团角色,并且创建时进行权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
598
+
598
599
  # 适用场景3:创建集团角色时可同时设置角色管理的子企业列表,可通过设置 SubOrganizationIds 参数达到此效果。
599
600
 
600
601
  # 适用场景4:主企业代理子企业操作的场景,需要设置Agent参数,并且ProxyOrganizationId设置为子企业的id即可。
@@ -965,6 +966,37 @@ module TencentCloud
965
966
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
966
967
  end
967
968
 
969
+ # 获取设置自动签印章小程序链接。
970
+
971
+ # 注意:
972
+ # <ul><li>需要<code>企业开通自动签</code>后使用。</li>
973
+ # <li>仅支持<code>已经开通了自动签的个人</code>更换自动签印章。</li>
974
+ # <li>链接有效期默认7天,<code>最多30天</code>。</li>
975
+ # <li>该接口的链接适用于<code>小程序</code>端。</li>
976
+ # <li>该接口不会扣除您的合同套餐,暂不参与计费。</li></ul>
977
+
978
+ # @param request: Request instance for CreateUserAutoSignSealUrl.
979
+ # @type request: :class:`Tencentcloud::ess::V20201111::CreateUserAutoSignSealUrlRequest`
980
+ # @rtype: :class:`Tencentcloud::ess::V20201111::CreateUserAutoSignSealUrlResponse`
981
+ def CreateUserAutoSignSealUrl(request)
982
+ body = send_request('CreateUserAutoSignSealUrl', request.serialize)
983
+ response = JSON.parse(body)
984
+ if response['Response'].key?('Error') == false
985
+ model = CreateUserAutoSignSealUrlResponse.new
986
+ model.deserialize(response['Response'])
987
+ model
988
+ else
989
+ code = response['Response']['Error']['Code']
990
+ message = response['Response']['Error']['Message']
991
+ reqid = response['Response']['RequestId']
992
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
993
+ end
994
+ rescue TencentCloud::Common::TencentCloudSDKException => e
995
+ raise e
996
+ rescue StandardError => e
997
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
998
+ end
999
+
968
1000
  # 用来设置本企业嵌入式页面个性化主题配置(例如是否展示电子签logo、定义主题色等),设置后获取的web签署界面都会使用此配置进行展示。
969
1001
 
970
1002
  # 如果多次调用,会以最后一次的配置为准
@@ -1609,7 +1641,8 @@ module TencentCloud
1609
1641
 
1610
1642
  # 适用场景1:更新当前企业的自定义SaaS角色或集团角色,并且更新时不进行角色中权限的更新(PermissionGroups 参数不传)。
1611
1643
 
1612
- # 适用场景2:更新当前企业的自定义SaaS角色或集团角色,并且更新时进行角色中权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。
1644
+ # 适用场景2:更新当前企业的自定义SaaS角色或集团角色,并且更新时进行角色中权限的设置(PermissionGroups 参数要传),权限树内容 PermissionGroups 可参考接口 DescribeIntegrationRoles 的输出。此处注意权限树内容可能会更新,需尽量拉取最新的权限树内容,并且权限树内容 PermissionGroups 必须是一颗完整的权限树。
1645
+
1613
1646
  # 适用场景3:更新集团角色管理的子企业列表,可通过设置 SubOrganizationIds 参数达到此效果。
1614
1647
 
1615
1648
  # 适用场景4:主企业代理子企业操作的场景,需要设置Agent参数,并且ProxyOrganizationId设置为子企业的id即可。
@@ -54,12 +54,12 @@ module TencentCloud
54
54
 
55
55
  attr_accessor :AppId, :ProxyAppId, :ProxyOrganizationId, :ProxyOperator
56
56
  extend Gem::Deprecate
57
- deprecate :AppId, :none, 2023, 9
58
- deprecate :AppId=, :none, 2023, 9
59
- deprecate :ProxyAppId, :none, 2023, 9
60
- deprecate :ProxyAppId=, :none, 2023, 9
61
- deprecate :ProxyOperator, :none, 2023, 9
62
- deprecate :ProxyOperator=, :none, 2023, 9
57
+ deprecate :AppId, :none, 2023, 10
58
+ deprecate :AppId=, :none, 2023, 10
59
+ deprecate :ProxyAppId, :none, 2023, 10
60
+ deprecate :ProxyAppId=, :none, 2023, 10
61
+ deprecate :ProxyOperator, :none, 2023, 10
62
+ deprecate :ProxyOperator=, :none, 2023, 10
63
63
 
64
64
  def initialize(appid=nil, proxyappid=nil, proxyorganizationid=nil, proxyoperator=nil)
65
65
  @AppId = appid
@@ -416,8 +416,8 @@ module TencentCloud
416
416
 
417
417
  attr_accessor :UserInfo, :CertInfoCallback, :UserDefineSeal, :SealImgCallback, :CallbackUrl, :VerifyChannels, :LicenseType
418
418
  extend Gem::Deprecate
419
- deprecate :CallbackUrl, :none, 2023, 9
420
- deprecate :CallbackUrl=, :none, 2023, 9
419
+ deprecate :CallbackUrl, :none, 2023, 10
420
+ deprecate :CallbackUrl=, :none, 2023, 10
421
421
 
422
422
  def initialize(userinfo=nil, certinfocallback=nil, userdefineseal=nil, sealimgcallback=nil, callbackurl=nil, verifychannels=nil, licensetype=nil)
423
423
  @UserInfo = userinfo
@@ -514,8 +514,8 @@ module TencentCloud
514
514
 
515
515
  attr_accessor :CallbackUrl, :Token, :CallbackKey, :CallbackToken
516
516
  extend Gem::Deprecate
517
- deprecate :Token, :none, 2023, 9
518
- deprecate :Token=, :none, 2023, 9
517
+ deprecate :Token, :none, 2023, 10
518
+ deprecate :Token=, :none, 2023, 10
519
519
 
520
520
  def initialize(callbackurl=nil, token=nil, callbackkey=nil, callbacktoken=nil)
521
521
  @CallbackUrl = callbackurl
@@ -545,12 +545,12 @@ module TencentCloud
545
545
 
546
546
  attr_accessor :ApplicationId, :OrganizationId, :OperatorId, :SubOrganizationId
547
547
  extend Gem::Deprecate
548
- deprecate :ApplicationId, :none, 2023, 9
549
- deprecate :ApplicationId=, :none, 2023, 9
550
- deprecate :OrganizationId, :none, 2023, 9
551
- deprecate :OrganizationId=, :none, 2023, 9
552
- deprecate :SubOrganizationId, :none, 2023, 9
553
- deprecate :SubOrganizationId=, :none, 2023, 9
548
+ deprecate :ApplicationId, :none, 2023, 10
549
+ deprecate :ApplicationId=, :none, 2023, 10
550
+ deprecate :OrganizationId, :none, 2023, 10
551
+ deprecate :OrganizationId=, :none, 2023, 10
552
+ deprecate :SubOrganizationId, :none, 2023, 10
553
+ deprecate :SubOrganizationId=, :none, 2023, 10
554
554
 
555
555
  def initialize(applicationid=nil, organizationid=nil, operatorid=nil, suborganizationid=nil)
556
556
  @ApplicationId = applicationid
@@ -1287,8 +1287,8 @@ module TencentCloud
1287
1287
 
1288
1288
  attr_accessor :ResourceType, :ResourceName, :ResourceId, :Operator, :Agent, :Organization
1289
1289
  extend Gem::Deprecate
1290
- deprecate :Organization, :none, 2023, 9
1291
- deprecate :Organization=, :none, 2023, 9
1290
+ deprecate :Organization, :none, 2023, 10
1291
+ deprecate :Organization=, :none, 2023, 10
1292
1292
 
1293
1293
  def initialize(resourcetype=nil, resourcename=nil, resourceid=nil, operator=nil, agent=nil, organization=nil)
1294
1294
  @ResourceType = resourcetype
@@ -1886,8 +1886,8 @@ module TencentCloud
1886
1886
 
1887
1887
  attr_accessor :ReportId, :Status, :ReportUrl, :RequestId
1888
1888
  extend Gem::Deprecate
1889
- deprecate :ReportUrl, :none, 2023, 9
1890
- deprecate :ReportUrl=, :none, 2023, 9
1889
+ deprecate :ReportUrl, :none, 2023, 10
1890
+ deprecate :ReportUrl=, :none, 2023, 10
1891
1891
 
1892
1892
  def initialize(reportid=nil, status=nil, reporturl=nil, requestid=nil)
1893
1893
  @ReportId = reportid
@@ -2273,10 +2273,10 @@ module TencentCloud
2273
2273
 
2274
2274
  attr_accessor :Operator, :FlowName, :Approvers, :FlowDescription, :FlowType, :ClientToken, :DeadLine, :RemindedOn, :UserData, :Unordered, :CustomShowMap, :NeedSignReview, :Agent, :CcInfos, :AutoSignScene, :RelatedFlowId, :CallbackUrl
2275
2275
  extend Gem::Deprecate
2276
- deprecate :RelatedFlowId, :none, 2023, 9
2277
- deprecate :RelatedFlowId=, :none, 2023, 9
2278
- deprecate :CallbackUrl, :none, 2023, 9
2279
- deprecate :CallbackUrl=, :none, 2023, 9
2276
+ deprecate :RelatedFlowId, :none, 2023, 10
2277
+ deprecate :RelatedFlowId=, :none, 2023, 10
2278
+ deprecate :CallbackUrl, :none, 2023, 10
2279
+ deprecate :CallbackUrl=, :none, 2023, 10
2280
2280
 
2281
2281
  def initialize(operator=nil, flowname=nil, approvers=nil, flowdescription=nil, flowtype=nil, clienttoken=nil, deadline=nil, remindedon=nil, userdata=nil, unordered=nil, customshowmap=nil, needsignreview=nil, agent=nil, ccinfos=nil, autosignscene=nil, relatedflowid=nil, callbackurl=nil)
2282
2282
  @Operator = operator
@@ -2465,8 +2465,8 @@ module TencentCloud
2465
2465
 
2466
2466
  attr_accessor :FlowId, :FlowApproverInfos, :Operator, :Agent, :Organization, :JumpUrl
2467
2467
  extend Gem::Deprecate
2468
- deprecate :Organization, :none, 2023, 9
2469
- deprecate :Organization=, :none, 2023, 9
2468
+ deprecate :Organization, :none, 2023, 10
2469
+ deprecate :Organization=, :none, 2023, 10
2470
2470
 
2471
2471
  def initialize(flowid=nil, flowapproverinfos=nil, operator=nil, agent=nil, organization=nil, jumpurl=nil)
2472
2472
  @FlowId = flowid
@@ -2844,10 +2844,10 @@ module TencentCloud
2844
2844
 
2845
2845
  attr_accessor :Operator, :TemplateId, :FlowName, :MaxFlowNum, :QrEffectiveDay, :FlowEffectiveDay, :Restrictions, :UserData, :CallbackUrl, :Agent, :ApproverRestrictions, :ApproverComponentLimitTypes
2846
2846
  extend Gem::Deprecate
2847
- deprecate :CallbackUrl, :none, 2023, 9
2848
- deprecate :CallbackUrl=, :none, 2023, 9
2849
- deprecate :ApproverRestrictions, :none, 2023, 9
2850
- deprecate :ApproverRestrictions=, :none, 2023, 9
2847
+ deprecate :CallbackUrl, :none, 2023, 10
2848
+ deprecate :CallbackUrl=, :none, 2023, 10
2849
+ deprecate :ApproverRestrictions, :none, 2023, 10
2850
+ deprecate :ApproverRestrictions=, :none, 2023, 10
2851
2851
 
2852
2852
  def initialize(operator=nil, templateid=nil, flowname=nil, maxflownum=nil, qreffectiveday=nil, floweffectiveday=nil, restrictions=nil, userdata=nil, callbackurl=nil, agent=nil, approverrestrictions=nil, approvercomponentlimittypes=nil)
2853
2853
  @Operator = operator
@@ -3381,8 +3381,8 @@ module TencentCloud
3381
3381
 
3382
3382
  attr_accessor :UserName, :IdCardNumber, :SealName, :Operator, :IdCardType, :SealImage, :SealImageCompress, :Mobile, :EnableAutoSign, :SealColor, :ProcessSeal, :FileId, :Agent, :LicenseType
3383
3383
  extend Gem::Deprecate
3384
- deprecate :SealImage, :none, 2023, 9
3385
- deprecate :SealImage=, :none, 2023, 9
3384
+ deprecate :SealImage, :none, 2023, 10
3385
+ deprecate :SealImage=, :none, 2023, 10
3386
3386
 
3387
3387
  def initialize(username=nil, idcardnumber=nil, sealname=nil, operator=nil, idcardtype=nil, sealimage=nil, sealimagecompress=nil, mobile=nil, enableautosign=nil, sealcolor=nil, processseal=nil, fileid=nil, agent=nil, licensetype=nil)
3388
3388
  @UserName = username
@@ -3561,7 +3561,8 @@ module TencentCloud
3561
3561
 
3562
3562
  # <ul><li> **0** : 腾讯电子签小程序个人首页 (默认)</li>
3563
3563
  # <li> **1** : 腾讯电子签小程序流程合同的详情页 (即合同签署页面)</li>
3564
- # <li> **2** : 腾讯电子签小程序合同列表页</li></ul>
3564
+ # <li> **2** : 腾讯电子签小程序合同列表页</li><li> **3** : 腾讯电子签小程序合同封面页
3565
+ # 注:`生成动态签署人补充链接时,必须指定为封面页`</li></ul>
3565
3566
  # @type PathType: Integer
3566
3567
  # @param AutoJumpBack: 签署完成后是否自动回跳
3567
3568
  # <ul><li>**false**:否, 签署完成不会自动跳转回来(默认)</li><li>**true**:是, 签署完成会自动跳转回来</li></ul>
@@ -3579,7 +3580,9 @@ module TencentCloud
3579
3580
 
3580
3581
  # 注: `字段为数组, 可以传值隐藏多个按钮`
3581
3582
  # @type Hides: Array
3582
- # @param RecipientId: 签署节点ID,用于生成动态签署人链接完成领取
3583
+ # @param RecipientId: 签署节点ID,用于生成动态签署人链接完成领取。
3584
+
3585
+ # 注:`生成动态签署人补充链接时必传。`
3583
3586
  # @type RecipientId: String
3584
3587
 
3585
3588
  attr_accessor :Operator, :OrganizationName, :Name, :Mobile, :EndPoint, :FlowId, :FlowGroupId, :PathType, :AutoJumpBack, :Agent, :Hides, :RecipientId
@@ -4005,6 +4008,88 @@ module TencentCloud
4005
4008
  end
4006
4009
  end
4007
4010
 
4011
+ # CreateUserAutoSignSealUrl请求参数结构体
4012
+ class CreateUserAutoSignSealUrlRequest < TencentCloud::Common::AbstractModel
4013
+ # @param Operator: 执行本接口操作的员工信息。
4014
+ # 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
4015
+ # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
4016
+ # @param SceneKey: 自动签使用的场景值, 可以选择的场景值如下:
4017
+ # <ul><li> **E_PRESCRIPTION_AUTO_SIGN** : 电子处方场景</li></ul>
4018
+
4019
+ # 注: `现在仅支持电子处方场景`
4020
+ # @type SceneKey: String
4021
+ # @param UserInfo: 自动签开通个人用户信息, 包括名字,身份证等。
4022
+ # @type UserInfo: :class:`Tencentcloud::Ess.v20201111.models.UserThreeFactor`
4023
+ # @param Agent: 代理企业和员工的信息。
4024
+ # 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
4025
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
4026
+ # @param ExpiredTime: 链接的过期时间,格式为Unix时间戳,不能早于当前时间,且最大为当前时间往后30天。`如果不传,默认过期时间为当前时间往后7天。`
4027
+ # @type ExpiredTime: Integer
4028
+
4029
+ attr_accessor :Operator, :SceneKey, :UserInfo, :Agent, :ExpiredTime
4030
+
4031
+ def initialize(operator=nil, scenekey=nil, userinfo=nil, agent=nil, expiredtime=nil)
4032
+ @Operator = operator
4033
+ @SceneKey = scenekey
4034
+ @UserInfo = userinfo
4035
+ @Agent = agent
4036
+ @ExpiredTime = expiredtime
4037
+ end
4038
+
4039
+ def deserialize(params)
4040
+ unless params['Operator'].nil?
4041
+ @Operator = UserInfo.new
4042
+ @Operator.deserialize(params['Operator'])
4043
+ end
4044
+ @SceneKey = params['SceneKey']
4045
+ unless params['UserInfo'].nil?
4046
+ @UserInfo = UserThreeFactor.new
4047
+ @UserInfo.deserialize(params['UserInfo'])
4048
+ end
4049
+ unless params['Agent'].nil?
4050
+ @Agent = Agent.new
4051
+ @Agent.deserialize(params['Agent'])
4052
+ end
4053
+ @ExpiredTime = params['ExpiredTime']
4054
+ end
4055
+ end
4056
+
4057
+ # CreateUserAutoSignSealUrl返回参数结构体
4058
+ class CreateUserAutoSignSealUrlResponse < TencentCloud::Common::AbstractModel
4059
+ # @param AppId: 腾讯电子签小程序的AppId,用于其他小程序/APP等应用跳转至腾讯电子签小程序使用。
4060
+ # @type AppId: String
4061
+ # @param AppOriginalId: 腾讯电子签小程序的原始Id,用于其他小程序/APP等应用跳转至腾讯电子签小程序使用。
4062
+ # @type AppOriginalId: String
4063
+ # @param Url: 个人用户自动签的开通链接, 短链形式。过期时间受 `ExpiredTime` 参数控制。
4064
+ # @type Url: String
4065
+ # @param Path: 腾讯电子签小程序的跳转路径,用于其他小程序/APP等应用跳转至腾讯电子签小程序使用。
4066
+ # @type Path: String
4067
+ # @param QrCode: base64格式的跳转二维码图片,可通过微信扫描后跳转到腾讯电子签小程序的开通界面。
4068
+ # @type QrCode: String
4069
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4070
+ # @type RequestId: String
4071
+
4072
+ attr_accessor :AppId, :AppOriginalId, :Url, :Path, :QrCode, :RequestId
4073
+
4074
+ def initialize(appid=nil, apporiginalid=nil, url=nil, path=nil, qrcode=nil, requestid=nil)
4075
+ @AppId = appid
4076
+ @AppOriginalId = apporiginalid
4077
+ @Url = url
4078
+ @Path = path
4079
+ @QrCode = qrcode
4080
+ @RequestId = requestid
4081
+ end
4082
+
4083
+ def deserialize(params)
4084
+ @AppId = params['AppId']
4085
+ @AppOriginalId = params['AppOriginalId']
4086
+ @Url = params['Url']
4087
+ @Path = params['Path']
4088
+ @QrCode = params['QrCode']
4089
+ @RequestId = params['RequestId']
4090
+ end
4091
+ end
4092
+
4008
4093
  # CreateWebThemeConfig请求参数结构体
4009
4094
  class CreateWebThemeConfigRequest < TencentCloud::Common::AbstractModel
4010
4095
  # @param Operator: 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
@@ -4470,10 +4555,10 @@ module TencentCloud
4470
4555
 
4471
4556
  attr_accessor :Operator, :BusinessType, :BusinessIds, :FileName, :FileType, :Offset, :Limit, :UrlTtl, :CcToken, :Scene, :Agent
4472
4557
  extend Gem::Deprecate
4473
- deprecate :CcToken, :none, 2023, 9
4474
- deprecate :CcToken=, :none, 2023, 9
4475
- deprecate :Scene, :none, 2023, 9
4476
- deprecate :Scene=, :none, 2023, 9
4558
+ deprecate :CcToken, :none, 2023, 10
4559
+ deprecate :CcToken=, :none, 2023, 10
4560
+ deprecate :Scene, :none, 2023, 10
4561
+ deprecate :Scene=, :none, 2023, 10
4477
4562
 
4478
4563
  def initialize(operator=nil, businesstype=nil, businessids=nil, filename=nil, filetype=nil, offset=nil, limit=nil, urlttl=nil, cctoken=nil, scene=nil, agent=nil)
4479
4564
  @Operator = operator
@@ -4838,12 +4923,12 @@ module TencentCloud
4838
4923
 
4839
4924
  attr_accessor :Operator, :Agent, :ContentType, :Filters, :Offset, :Limit, :ApplicationId, :IsChannel, :Organization, :GenerateSource
4840
4925
  extend Gem::Deprecate
4841
- deprecate :IsChannel, :none, 2023, 9
4842
- deprecate :IsChannel=, :none, 2023, 9
4843
- deprecate :Organization, :none, 2023, 9
4844
- deprecate :Organization=, :none, 2023, 9
4845
- deprecate :GenerateSource, :none, 2023, 9
4846
- deprecate :GenerateSource=, :none, 2023, 9
4926
+ deprecate :IsChannel, :none, 2023, 10
4927
+ deprecate :IsChannel=, :none, 2023, 10
4928
+ deprecate :Organization, :none, 2023, 10
4929
+ deprecate :Organization=, :none, 2023, 10
4930
+ deprecate :GenerateSource, :none, 2023, 10
4931
+ deprecate :GenerateSource=, :none, 2023, 10
4847
4932
 
4848
4933
  def initialize(operator=nil, agent=nil, contenttype=nil, filters=nil, offset=nil, limit=nil, applicationid=nil, ischannel=nil, organization=nil, generatesource=nil)
4849
4934
  @Operator = operator
@@ -5260,8 +5345,8 @@ module TencentCloud
5260
5345
 
5261
5346
  attr_accessor :Total, :JoinedTotal, :ActivedTotal, :ExportUrl, :List, :ActivatedTotal, :RequestId
5262
5347
  extend Gem::Deprecate
5263
- deprecate :ActivedTotal, :none, 2023, 9
5264
- deprecate :ActivedTotal=, :none, 2023, 9
5348
+ deprecate :ActivedTotal, :none, 2023, 10
5349
+ deprecate :ActivedTotal=, :none, 2023, 10
5265
5350
 
5266
5351
  def initialize(total=nil, joinedtotal=nil, activedtotal=nil, exporturl=nil, list=nil, activatedtotal=nil, requestid=nil)
5267
5352
  @Total = total
@@ -6339,8 +6424,8 @@ module TencentCloud
6339
6424
 
6340
6425
  attr_accessor :ApproverType, :OrganizationName, :ApproverName, :ApproverMobile, :ApproverIdCardType, :ApproverIdCardNumber, :RecipientId, :VerifyChannel, :NotifyType, :IsFullText, :PreReadTime, :UserId, :Required, :ApproverSource, :CustomApproverTag, :RegisterInfo, :ApproverOption, :JumpUrl, :SignId, :ApproverNeedSignReview, :SignComponents, :Components, :ComponentLimitType, :ApproverVerifyTypes, :ApproverSignTypes
6341
6426
  extend Gem::Deprecate
6342
- deprecate :JumpUrl, :none, 2023, 9
6343
- deprecate :JumpUrl=, :none, 2023, 9
6427
+ deprecate :JumpUrl, :none, 2023, 10
6428
+ deprecate :JumpUrl=, :none, 2023, 10
6344
6429
 
6345
6430
  def initialize(approvertype=nil, organizationname=nil, approvername=nil, approvermobile=nil, approveridcardtype=nil, approveridcardnumber=nil, recipientid=nil, verifychannel=nil, notifytype=nil, isfulltext=nil, prereadtime=nil, userid=nil, required=nil, approversource=nil, customapprovertag=nil, registerinfo=nil, approveroption=nil, jumpurl=nil, signid=nil, approverneedsignreview=nil, signcomponents=nil, components=nil, componentlimittype=nil, approververifytypes=nil, approversigntypes=nil)
6346
6431
  @ApproverType = approvertype
@@ -6546,8 +6631,8 @@ module TencentCloud
6546
6631
 
6547
6632
  attr_accessor :FlowName, :Approvers, :FileIds, :TemplateId, :FlowType, :FlowDescription, :Deadline, :CallbackUrl, :UserData, :Unordered, :Components, :NeedSignReview, :AutoSignScene
6548
6633
  extend Gem::Deprecate
6549
- deprecate :CallbackUrl, :none, 2023, 9
6550
- deprecate :CallbackUrl=, :none, 2023, 9
6634
+ deprecate :CallbackUrl, :none, 2023, 10
6635
+ deprecate :CallbackUrl=, :none, 2023, 10
6551
6636
 
6552
6637
  def initialize(flowname=nil, approvers=nil, fileids=nil, templateid=nil, flowtype=nil, flowdescription=nil, deadline=nil, callbackurl=nil, userdata=nil, unordered=nil, components=nil, needsignreview=nil, autosignscene=nil)
6553
6638
  @FlowName = flowname
@@ -6847,8 +6932,8 @@ module TencentCloud
6847
6932
 
6848
6933
  attr_accessor :TaskId, :Operator, :Agent, :Organization
6849
6934
  extend Gem::Deprecate
6850
- deprecate :Organization, :none, 2023, 9
6851
- deprecate :Organization=, :none, 2023, 9
6935
+ deprecate :Organization, :none, 2023, 10
6936
+ deprecate :Organization=, :none, 2023, 10
6852
6937
 
6853
6938
  def initialize(taskid=nil, operator=nil, agent=nil, organization=nil)
6854
6939
  @TaskId = taskid
@@ -7390,16 +7475,16 @@ module TencentCloud
7390
7475
 
7391
7476
  attr_accessor :OrganizationId, :Channel, :OrganizationOpenId, :ClientIp, :ProxyIp
7392
7477
  extend Gem::Deprecate
7393
- deprecate :OrganizationId, :none, 2023, 9
7394
- deprecate :OrganizationId=, :none, 2023, 9
7395
- deprecate :Channel, :none, 2023, 9
7396
- deprecate :Channel=, :none, 2023, 9
7397
- deprecate :OrganizationOpenId, :none, 2023, 9
7398
- deprecate :OrganizationOpenId=, :none, 2023, 9
7399
- deprecate :ClientIp, :none, 2023, 9
7400
- deprecate :ClientIp=, :none, 2023, 9
7401
- deprecate :ProxyIp, :none, 2023, 9
7402
- deprecate :ProxyIp=, :none, 2023, 9
7478
+ deprecate :OrganizationId, :none, 2023, 10
7479
+ deprecate :OrganizationId=, :none, 2023, 10
7480
+ deprecate :Channel, :none, 2023, 10
7481
+ deprecate :Channel=, :none, 2023, 10
7482
+ deprecate :OrganizationOpenId, :none, 2023, 10
7483
+ deprecate :OrganizationOpenId=, :none, 2023, 10
7484
+ deprecate :ClientIp, :none, 2023, 10
7485
+ deprecate :ClientIp=, :none, 2023, 10
7486
+ deprecate :ProxyIp, :none, 2023, 10
7487
+ deprecate :ProxyIp=, :none, 2023, 10
7403
7488
 
7404
7489
  def initialize(organizationid=nil, channel=nil, organizationopenid=nil, clientip=nil, proxyip=nil)
7405
7490
  @OrganizationId = organizationid
@@ -7723,8 +7808,8 @@ module TencentCloud
7723
7808
 
7724
7809
  attr_accessor :LegalName, :Uscc, :UnifiedSocialCreditCode
7725
7810
  extend Gem::Deprecate
7726
- deprecate :Uscc, :none, 2023, 9
7727
- deprecate :Uscc=, :none, 2023, 9
7811
+ deprecate :Uscc, :none, 2023, 10
7812
+ deprecate :Uscc=, :none, 2023, 10
7728
7813
 
7729
7814
  def initialize(legalname=nil, uscc=nil, unifiedsocialcreditcode=nil)
7730
7815
  @LegalName = legalname
@@ -8082,8 +8167,8 @@ module TencentCloud
8082
8167
 
8083
8168
  attr_accessor :Operator, :FlowId, :ClientToken, :Agent, :CcNotifyType
8084
8169
  extend Gem::Deprecate
8085
- deprecate :ClientToken, :none, 2023, 9
8086
- deprecate :ClientToken=, :none, 2023, 9
8170
+ deprecate :ClientToken, :none, 2023, 10
8171
+ deprecate :ClientToken=, :none, 2023, 10
8087
8172
 
8088
8173
  def initialize(operator=nil, flowid=nil, clienttoken=nil, agent=nil, ccnotifytype=nil)
8089
8174
  @Operator = operator
@@ -8278,6 +8363,9 @@ module TencentCloud
8278
8363
  # false-未发布
8279
8364
  # 注意:此字段可能返回 null,表示取不到有效值。
8280
8365
  # @type Published: Boolean
8366
+ # @param ShareTemplateId: 分享来源的模板ID。用在集团账号子企业模板里
8367
+ # 注意:此字段可能返回 null,表示取不到有效值。
8368
+ # @type ShareTemplateId: String
8281
8369
  # @param TemplateSeals: 模板内部指定的印章列表
8282
8370
  # 注意:此字段可能返回 null,表示取不到有效值。
8283
8371
  # @type TemplateSeals: Array
@@ -8285,12 +8373,12 @@ module TencentCloud
8285
8373
  # 注意:此字段可能返回 null,表示取不到有效值。
8286
8374
  # @type Seals: Array
8287
8375
 
8288
- attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :PreviewUrl, :TemplateVersion, :Published, :TemplateSeals, :Seals
8376
+ attr_accessor :TemplateId, :TemplateName, :Description, :DocumentResourceIds, :FileInfos, :AttachmentResourceIds, :SignOrder, :Recipients, :Components, :SignComponents, :Status, :Creator, :CreatedOn, :Promoter, :TemplateType, :Available, :OrganizationId, :PreviewUrl, :TemplateVersion, :Published, :ShareTemplateId, :TemplateSeals, :Seals
8289
8377
  extend Gem::Deprecate
8290
- deprecate :Seals, :none, 2023, 9
8291
- deprecate :Seals=, :none, 2023, 9
8378
+ deprecate :Seals, :none, 2023, 10
8379
+ deprecate :Seals=, :none, 2023, 10
8292
8380
 
8293
- def initialize(templateid=nil, templatename=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, recipients=nil, components=nil, signcomponents=nil, status=nil, creator=nil, createdon=nil, promoter=nil, templatetype=nil, available=nil, organizationid=nil, previewurl=nil, templateversion=nil, published=nil, templateseals=nil, seals=nil)
8381
+ def initialize(templateid=nil, templatename=nil, description=nil, documentresourceids=nil, fileinfos=nil, attachmentresourceids=nil, signorder=nil, recipients=nil, components=nil, signcomponents=nil, status=nil, creator=nil, createdon=nil, promoter=nil, templatetype=nil, available=nil, organizationid=nil, previewurl=nil, templateversion=nil, published=nil, sharetemplateid=nil, templateseals=nil, seals=nil)
8294
8382
  @TemplateId = templateid
8295
8383
  @TemplateName = templatename
8296
8384
  @Description = description
@@ -8311,6 +8399,7 @@ module TencentCloud
8311
8399
  @PreviewUrl = previewurl
8312
8400
  @TemplateVersion = templateversion
8313
8401
  @Published = published
8402
+ @ShareTemplateId = sharetemplateid
8314
8403
  @TemplateSeals = templateseals
8315
8404
  @Seals = seals
8316
8405
  end
@@ -8367,6 +8456,7 @@ module TencentCloud
8367
8456
  @PreviewUrl = params['PreviewUrl']
8368
8457
  @TemplateVersion = params['TemplateVersion']
8369
8458
  @Published = params['Published']
8459
+ @ShareTemplateId = params['ShareTemplateId']
8370
8460
  unless params['TemplateSeals'].nil?
8371
8461
  @TemplateSeals = []
8372
8462
  params['TemplateSeals'].each do |i|
@@ -8589,8 +8679,8 @@ module TencentCloud
8589
8679
 
8590
8680
  attr_accessor :BusinessType, :Caller, :FileInfos, :FileType, :CoverRect, :CustomIds, :FileUrls, :Agent
8591
8681
  extend Gem::Deprecate
8592
- deprecate :FileUrls, :none, 2023, 9
8593
- deprecate :FileUrls=, :none, 2023, 9
8682
+ deprecate :FileUrls, :none, 2023, 10
8683
+ deprecate :FileUrls=, :none, 2023, 10
8594
8684
 
8595
8685
  def initialize(businesstype=nil, caller=nil, fileinfos=nil, filetype=nil, coverrect=nil, customids=nil, fileurls=nil, agent=nil)
8596
8686
  @BusinessType = businesstype
@@ -8668,14 +8758,14 @@ module TencentCloud
8668
8758
 
8669
8759
  attr_accessor :UserId, :Channel, :OpenId, :ClientIp, :ProxyIp
8670
8760
  extend Gem::Deprecate
8671
- deprecate :Channel, :none, 2023, 9
8672
- deprecate :Channel=, :none, 2023, 9
8673
- deprecate :OpenId, :none, 2023, 9
8674
- deprecate :OpenId=, :none, 2023, 9
8675
- deprecate :ClientIp, :none, 2023, 9
8676
- deprecate :ClientIp=, :none, 2023, 9
8677
- deprecate :ProxyIp, :none, 2023, 9
8678
- deprecate :ProxyIp=, :none, 2023, 9
8761
+ deprecate :Channel, :none, 2023, 10
8762
+ deprecate :Channel=, :none, 2023, 10
8763
+ deprecate :OpenId, :none, 2023, 10
8764
+ deprecate :OpenId=, :none, 2023, 10
8765
+ deprecate :ClientIp, :none, 2023, 10
8766
+ deprecate :ClientIp=, :none, 2023, 10
8767
+ deprecate :ProxyIp, :none, 2023, 10
8768
+ deprecate :ProxyIp=, :none, 2023, 10
8679
8769
 
8680
8770
  def initialize(userid=nil, channel=nil, openid=nil, clientip=nil, proxyip=nil)
8681
8771
  @UserId = userid
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ess
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.671
4
+ version: 3.0.673
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-10-07 00:00:00.000000000 Z
11
+ date: 2023-10-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common