tencentcloud-sdk-essbasic 3.0.714 → 3.0.716

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: 41e849ea8df6057f3ffa5bcfdfbe28179a79dd6d
4
- data.tar.gz: aabc1bf6114b3add5520e90fc769f34f53b65f32
3
+ metadata.gz: 8ecbd7e26359d45bf315bc03114a1e289d37a14f
4
+ data.tar.gz: 9be53ec86e83d6d5eaa74433afe3778dbbb80ea9
5
5
  SHA512:
6
- metadata.gz: a95e42e40934b9086ad78fb1ac336b7d4ff42298afb7999e78ad8b8ed60131d3b8bbc42466ab45911ce33896eb7ca6a1ff25e415a9d2637b599bc5bdd5b99ef6
7
- data.tar.gz: b6c8978a16dca70d227a9d2eb3baed81be515d4b6b1df191b5868896fc8622f836819ee8e17d17120e60405e694295729b008f8325e0f6f907ab18e14c9a15ff
6
+ metadata.gz: a9a12dfe5fe583adbf3f198aacddc9831245b6359694f7abece19bb32a764b4568e9654e39eb7187be8b706887000485a7169ffd6558acc85772a278edd076cc
7
+ data.tar.gz: 95e2567be99b39bbca757a10782b8a229e61c9f36cb7a872af32e1e69f053bd640c39c3ae061e43634991418eb52edd5e0e959f12411c56cacce3bcd240291c7
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.714
1
+ 3.0.716
@@ -1794,6 +1794,30 @@ module TencentCloud
1794
1794
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1795
1795
  end
1796
1796
 
1797
+ # 生成渠道子客用印申请审批小程序链接,链接类型(通过H5唤起小程序或通过APP跳转的方式查看)
1798
+
1799
+ # @param request: Request instance for DescribeChannelSealPolicyWorkflowUrl.
1800
+ # @type request: :class:`Tencentcloud::essbasic::V20210526::DescribeChannelSealPolicyWorkflowUrlRequest`
1801
+ # @rtype: :class:`Tencentcloud::essbasic::V20210526::DescribeChannelSealPolicyWorkflowUrlResponse`
1802
+ def DescribeChannelSealPolicyWorkflowUrl(request)
1803
+ body = send_request('DescribeChannelSealPolicyWorkflowUrl', request.serialize)
1804
+ response = JSON.parse(body)
1805
+ if response['Response'].key?('Error') == false
1806
+ model = DescribeChannelSealPolicyWorkflowUrlResponse.new
1807
+ model.deserialize(response['Response'])
1808
+ model
1809
+ else
1810
+ code = response['Response']['Error']['Code']
1811
+ message = response['Response']['Error']['Message']
1812
+ reqid = response['Response']['RequestId']
1813
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1814
+ end
1815
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1816
+ raise e
1817
+ rescue StandardError => e
1818
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1819
+ end
1820
+
1797
1821
  # 查询企业扩展服务的开通和授权情况,当前支持查询以下内容:
1798
1822
  # 1. 企业自动签
1799
1823
  # 2. 企业与港澳台居民签署合同
@@ -5580,6 +5580,64 @@ module TencentCloud
5580
5580
  end
5581
5581
  end
5582
5582
 
5583
+ # DescribeChannelSealPolicyWorkflowUrl请求参数结构体
5584
+ class DescribeChannelSealPolicyWorkflowUrlRequest < TencentCloud::Common::AbstractModel
5585
+ # @param Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
5586
+
5587
+ # 此接口下面信息必填。
5588
+
5589
+ # 渠道应用标识: Agent.AppId
5590
+ # 第三方平台子客企业标识: Agent.ProxyOrganizationOpenId
5591
+ # 第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId
5592
+ # 第三方平台子客企业和员工必须已经经过实名认证
5593
+ # @type Agent: :class:`Tencentcloud::Essbasic.v20210526.models.Agent`
5594
+ # @param WorkflowInstanceId: 用印审批单的ID,可通过用印申请回调获取。
5595
+ # @type WorkflowInstanceId: String
5596
+ # @param Endpoint: 生成链接的类型:
5597
+ # 生成链接的类型
5598
+ # <ul><li>**LongLink**:(默认)长链接,H5跳转到电子签小程序链接,链接有效期为1年</li>
5599
+ # <li>**ShortLink**:H5跳转到电子签小程序链接,一般用于发送短信中带的链接,打开后进入腾讯电子签小程序,链接有效期为7天</li>
5600
+ # <li>**App**:第三方APP或小程序跳转电子签小程序链接,一般用于贵方小程序或者APP跳转过来,打开后进入腾讯电子签小程序,链接有效期为1年</li></ul>
5601
+ # @type Endpoint: String
5602
+
5603
+ attr_accessor :Agent, :WorkflowInstanceId, :Endpoint
5604
+
5605
+ def initialize(agent=nil, workflowinstanceid=nil, endpoint=nil)
5606
+ @Agent = agent
5607
+ @WorkflowInstanceId = workflowinstanceid
5608
+ @Endpoint = endpoint
5609
+ end
5610
+
5611
+ def deserialize(params)
5612
+ unless params['Agent'].nil?
5613
+ @Agent = Agent.new
5614
+ @Agent.deserialize(params['Agent'])
5615
+ end
5616
+ @WorkflowInstanceId = params['WorkflowInstanceId']
5617
+ @Endpoint = params['Endpoint']
5618
+ end
5619
+ end
5620
+
5621
+ # DescribeChannelSealPolicyWorkflowUrl返回参数结构体
5622
+ class DescribeChannelSealPolicyWorkflowUrlResponse < TencentCloud::Common::AbstractModel
5623
+ # @param WorkflowUrl: 用印审批小程序链接,链接类型(通过H5唤起小程序或通过APP跳转方式查看)。
5624
+ # @type WorkflowUrl: String
5625
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5626
+ # @type RequestId: String
5627
+
5628
+ attr_accessor :WorkflowUrl, :RequestId
5629
+
5630
+ def initialize(workflowurl=nil, requestid=nil)
5631
+ @WorkflowUrl = workflowurl
5632
+ @RequestId = requestid
5633
+ end
5634
+
5635
+ def deserialize(params)
5636
+ @WorkflowUrl = params['WorkflowUrl']
5637
+ @RequestId = params['RequestId']
5638
+ end
5639
+ end
5640
+
5583
5641
  # DescribeExtendedServiceAuthInfo请求参数结构体
5584
5642
  class DescribeExtendedServiceAuthInfoRequest < TencentCloud::Common::AbstractModel
5585
5643
  # @param Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
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.714
4
+ version: 3.0.716
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-11-27 00:00:00.000000000 Z
11
+ date: 2023-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common