tencentcloud-sdk-ess 3.0.567 → 3.0.569

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: e2d02d7880a5bbec9701caa7f09ca5f39f8588f4
4
- data.tar.gz: d11569d514966030956f6563fc5cb6d07cbcc52a
3
+ metadata.gz: 57547b3b10e017ba29b6fa8d30d261df6913e73f
4
+ data.tar.gz: 5b40a21ea7ab283a2305cddc9c44842178b51ae1
5
5
  SHA512:
6
- metadata.gz: d8be1d79b536ded0f0a2ead2159e0690346721f56198aa347df0e753d8ce54db63a7947f288ec8cb75cb7f2339c0125370d13b59212b5b1f72b7a08b9f776139
7
- data.tar.gz: 7ae2a102aa663ae0588f8b43dac3ba6810c98162560204193edff6b360fe8ff810f9ffe459fcbf2227fbcd81c68c2133677251e63a984b84abe7a5eefe2aac7b
6
+ metadata.gz: 1a6334349b4d8ce5f5a9181ad76f64e07a032fb5c3ddf099b0ea7904f03f205e52cb96eb7230b15a19c8b2ef1a21aabac0861ed9f59ece8eff7d52af1bb4d5d8
7
+ data.tar.gz: 624c621012581e334b64cee79a16a66655b19f2a8514028fc0b89477b34db7063e59a33d2b9a65b7ee3732b733bc81ce8b6372b3e47b80b4b1d9e9ccc720c2af
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.567
1
+ 3.0.569
@@ -129,6 +129,30 @@ module TencentCloud
129
129
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
130
130
  end
131
131
 
132
+ # 生成子客编辑企业信息二维码
133
+
134
+ # @param request: Request instance for CreateChannelSubOrganizationModifyQrCode.
135
+ # @type request: :class:`Tencentcloud::ess::V20201111::CreateChannelSubOrganizationModifyQrCodeRequest`
136
+ # @rtype: :class:`Tencentcloud::ess::V20201111::CreateChannelSubOrganizationModifyQrCodeResponse`
137
+ def CreateChannelSubOrganizationModifyQrCode(request)
138
+ body = send_request('CreateChannelSubOrganizationModifyQrCode', request.serialize)
139
+ response = JSON.parse(body)
140
+ if response['Response'].key?('Error') == false
141
+ model = CreateChannelSubOrganizationModifyQrCodeResponse.new
142
+ model.deserialize(response['Response'])
143
+ model
144
+ else
145
+ code = response['Response']['Error']['Code']
146
+ message = response['Response']['Error']['Message']
147
+ reqid = response['Response']['RequestId']
148
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
149
+ end
150
+ rescue TencentCloud::Common::TencentCloudSDKException => e
151
+ raise e
152
+ rescue StandardError => e
153
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
154
+ end
155
+
132
156
  # 上传了word、excel文件后,通过该接口发起文件转换任务,将word、excel文件转换为pdf文件。
133
157
 
134
158
  # @param request: Request instance for CreateConvertTaskApi.
@@ -505,7 +505,7 @@ module TencentCloud
505
505
  # ATTACHMENT - 附件控件,ComponentValue 填写附件图片的资源 ID列表,以逗号分割;
506
506
  # SELECTOR - 选择器控件,ComponentValue填写选择的字符串内容;
507
507
  # DATE - 日期控件;默认是格式化为xxxx年xx月xx日字符串;
508
- # DISTRICT - 省市区行政区划控件,ComponentValue填写省市区行政区划字符串内容;
508
+ # DISTRICT - 省市区行政区控件,ComponentValue填写省市区行政区字符串内容;
509
509
 
510
510
  # 如果是SignComponent控件类型,则可选的字段为
511
511
  # SIGN_SEAL - 签署印章控件;
@@ -775,6 +775,53 @@ module TencentCloud
775
775
  end
776
776
  end
777
777
 
778
+ # CreateChannelSubOrganizationModifyQrCode请求参数结构体
779
+ class CreateChannelSubOrganizationModifyQrCodeRequest < TencentCloud::Common::AbstractModel
780
+ # @param Operator: 操作人
781
+ # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
782
+ # @param ApplicationId: 应用编号
783
+ # @type ApplicationId: String
784
+
785
+ attr_accessor :Operator, :ApplicationId
786
+
787
+ def initialize(operator=nil, applicationid=nil)
788
+ @Operator = operator
789
+ @ApplicationId = applicationid
790
+ end
791
+
792
+ def deserialize(params)
793
+ unless params['Operator'].nil?
794
+ @Operator = UserInfo.new
795
+ @Operator.deserialize(params['Operator'])
796
+ end
797
+ @ApplicationId = params['ApplicationId']
798
+ end
799
+ end
800
+
801
+ # CreateChannelSubOrganizationModifyQrCode返回参数结构体
802
+ class CreateChannelSubOrganizationModifyQrCodeResponse < TencentCloud::Common::AbstractModel
803
+ # @param QrCodeUrl: 二维码下载链接
804
+ # @type QrCodeUrl: String
805
+ # @param ExpiredTime: 二维码失效时间 unix 时间戳 精确到秒
806
+ # @type ExpiredTime: Integer
807
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
808
+ # @type RequestId: String
809
+
810
+ attr_accessor :QrCodeUrl, :ExpiredTime, :RequestId
811
+
812
+ def initialize(qrcodeurl=nil, expiredtime=nil, requestid=nil)
813
+ @QrCodeUrl = qrcodeurl
814
+ @ExpiredTime = expiredtime
815
+ @RequestId = requestid
816
+ end
817
+
818
+ def deserialize(params)
819
+ @QrCodeUrl = params['QrCodeUrl']
820
+ @ExpiredTime = params['ExpiredTime']
821
+ @RequestId = params['RequestId']
822
+ end
823
+ end
824
+
778
825
  # CreateConvertTaskApi请求参数结构体
779
826
  class CreateConvertTaskApiRequest < TencentCloud::Common::AbstractModel
780
827
  # @param ResourceType: 资源类型 取值范围doc,docx,html,xls,xlsx之一
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.567
4
+ version: 3.0.569
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-05-11 00:00:00.000000000 Z
11
+ date: 2023-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common