tencentcloud-sdk-cpdp 3.0.430 → 3.0.432

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: fa370d49f49d455dc2a6178423e7d0bd053625a5
4
- data.tar.gz: 06072d7e9adc5d404a15bf34ed590f5b2fc5e3e8
3
+ metadata.gz: a068c490390cdf5b0ce4a91e2f8e36c9648c20d8
4
+ data.tar.gz: a9737160c4e9690615dff46e4d259d847647c4a8
5
5
  SHA512:
6
- metadata.gz: fcfc925d27db6e257661897cd6f68cc2cb249bccbaee18ab5f5fa49aa4f834d0972c9406a0d5965456c6553711e659dac3ecaf61ff34d9ccaf20bfe0203e0820
7
- data.tar.gz: 475800173753c26497c0cae2b08ced64f5de7384fca5e9656b1b47ffa4b28af58f57534adecff575cba19e34318b16ce82c66cc33d95e3836ef1593132d51450
6
+ metadata.gz: 951d3668a16e6eb3f5d95938f563e2cf76e1621dc3a23c2009e7a7e59857f97ad9fb8c7ac970c2b0b4aa6d705e9b20cf66a8480d2b293161329c563941a82930
7
+ data.tar.gz: 31a6c7ab57c9638b5cea930eb04f15ec66a4008d53bcb4b7806e31c68beb53fc8678c11a9d887b886f3f9d1bdc19c69bb3926f9e50dc697d95f32644960091db
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.430
1
+ 3.0.432
@@ -1093,6 +1093,30 @@ module TencentCloud
1093
1093
  raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1094
1094
  end
1095
1095
 
1096
+ # 云企付-跨境支付下单
1097
+
1098
+ # @param request: Request instance for CreateOpenBankGlobalPaymentOrder.
1099
+ # @type request: :class:`Tencentcloud::cpdp::V20190820::CreateOpenBankGlobalPaymentOrderRequest`
1100
+ # @rtype: :class:`Tencentcloud::cpdp::V20190820::CreateOpenBankGlobalPaymentOrderResponse`
1101
+ def CreateOpenBankGlobalPaymentOrder(request)
1102
+ body = send_request('CreateOpenBankGlobalPaymentOrder', request.serialize)
1103
+ response = JSON.parse(body)
1104
+ if response['Response'].key?('Error') == false
1105
+ model = CreateOpenBankGlobalPaymentOrderResponse.new
1106
+ model.deserialize(response['Response'])
1107
+ model
1108
+ else
1109
+ code = response['Response']['Error']['Code']
1110
+ message = response['Response']['Error']['Message']
1111
+ reqid = response['Response']['RequestId']
1112
+ raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
1113
+ end
1114
+ rescue TencentCloud::Common::TencentCloudSDKException => e
1115
+ raise e
1116
+ rescue StandardError => e
1117
+ raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
1118
+ end
1119
+
1096
1120
  # 云企付-创建商户
1097
1121
 
1098
1122
  # @param request: Request instance for CreateOpenBankMerchant.
@@ -6879,6 +6879,131 @@ module TencentCloud
6879
6879
  end
6880
6880
  end
6881
6881
 
6882
+ # CreateOpenBankGlobalPaymentOrder请求参数结构体
6883
+ class CreateOpenBankGlobalPaymentOrderRequest < TencentCloud::Common::AbstractModel
6884
+ # @param ChannelMerchantId: 渠道商户号
6885
+ # @type ChannelMerchantId: String
6886
+ # @param ChannelName: 渠道名称
6887
+ # @type ChannelName: String
6888
+ # @param PayType: 付款方式
6889
+ # @type PayType: String
6890
+ # @param OutOrderId: 外部商户订单号,只能是数字、大小写字母,且在同一个接入平台下唯一
6891
+ # @type OutOrderId: String
6892
+ # @param TotalAmount: 付款金额,单位分
6893
+ # @type TotalAmount: Integer
6894
+ # @param Currency: 支付币种,参考附录:货币代码
6895
+ # @type Currency: String
6896
+ # @param ChannelSubMerchantId: 渠道子商户号
6897
+ # @type ChannelSubMerchantId: String
6898
+ # @param NotifyUrl: 支付成功回调地址。
6899
+ # @type NotifyUrl: String
6900
+ # @param FrontUrl: 前端跳转地址。通联支付成功后,支付网关跳回商户的地址
6901
+ # @type FrontUrl: String
6902
+ # @param FrontLanguage: 网站语言。收银台显示语言,见附录网站语言
6903
+ # @type FrontLanguage: String
6904
+ # @param Remark: 付款备注
6905
+ # @type Remark: String
6906
+ # @param ExternalPaymentData: 第三方拓展信息信息
6907
+ # @type ExternalPaymentData: String
6908
+ # @param GoodsInfos: 商品信息
6909
+ # @type GoodsInfos: Array
6910
+ # @param ShippingInfo: 邮寄信息
6911
+ # @type ShippingInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankShippingInfo`
6912
+ # @param BillingInfo: 账单信息
6913
+ # @type BillingInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankBillingInfo`
6914
+ # @param Environment: 环境类型
6915
+ # __release__:生产环境
6916
+ # __sandbox__:沙箱环境
6917
+ # 缺省默认为生产环境
6918
+ # @type Environment: String
6919
+
6920
+ attr_accessor :ChannelMerchantId, :ChannelName, :PayType, :OutOrderId, :TotalAmount, :Currency, :ChannelSubMerchantId, :NotifyUrl, :FrontUrl, :FrontLanguage, :Remark, :ExternalPaymentData, :GoodsInfos, :ShippingInfo, :BillingInfo, :Environment
6921
+
6922
+ def initialize(channelmerchantid=nil, channelname=nil, paytype=nil, outorderid=nil, totalamount=nil, currency=nil, channelsubmerchantid=nil, notifyurl=nil, fronturl=nil, frontlanguage=nil, remark=nil, externalpaymentdata=nil, goodsinfos=nil, shippinginfo=nil, billinginfo=nil, environment=nil)
6923
+ @ChannelMerchantId = channelmerchantid
6924
+ @ChannelName = channelname
6925
+ @PayType = paytype
6926
+ @OutOrderId = outorderid
6927
+ @TotalAmount = totalamount
6928
+ @Currency = currency
6929
+ @ChannelSubMerchantId = channelsubmerchantid
6930
+ @NotifyUrl = notifyurl
6931
+ @FrontUrl = fronturl
6932
+ @FrontLanguage = frontlanguage
6933
+ @Remark = remark
6934
+ @ExternalPaymentData = externalpaymentdata
6935
+ @GoodsInfos = goodsinfos
6936
+ @ShippingInfo = shippinginfo
6937
+ @BillingInfo = billinginfo
6938
+ @Environment = environment
6939
+ end
6940
+
6941
+ def deserialize(params)
6942
+ @ChannelMerchantId = params['ChannelMerchantId']
6943
+ @ChannelName = params['ChannelName']
6944
+ @PayType = params['PayType']
6945
+ @OutOrderId = params['OutOrderId']
6946
+ @TotalAmount = params['TotalAmount']
6947
+ @Currency = params['Currency']
6948
+ @ChannelSubMerchantId = params['ChannelSubMerchantId']
6949
+ @NotifyUrl = params['NotifyUrl']
6950
+ @FrontUrl = params['FrontUrl']
6951
+ @FrontLanguage = params['FrontLanguage']
6952
+ @Remark = params['Remark']
6953
+ @ExternalPaymentData = params['ExternalPaymentData']
6954
+ unless params['GoodsInfos'].nil?
6955
+ @GoodsInfos = []
6956
+ params['GoodsInfos'].each do |i|
6957
+ openbankgoodsinfo_tmp = OpenBankGoodsInfo.new
6958
+ openbankgoodsinfo_tmp.deserialize(i)
6959
+ @GoodsInfos << openbankgoodsinfo_tmp
6960
+ end
6961
+ end
6962
+ unless params['ShippingInfo'].nil?
6963
+ @ShippingInfo = OpenBankShippingInfo.new
6964
+ @ShippingInfo.deserialize(params['ShippingInfo'])
6965
+ end
6966
+ unless params['BillingInfo'].nil?
6967
+ @BillingInfo = OpenBankBillingInfo.new
6968
+ @BillingInfo.deserialize(params['BillingInfo'])
6969
+ end
6970
+ @Environment = params['Environment']
6971
+ end
6972
+ end
6973
+
6974
+ # CreateOpenBankGlobalPaymentOrder返回参数结构体
6975
+ class CreateOpenBankGlobalPaymentOrderResponse < TencentCloud::Common::AbstractModel
6976
+ # @param ErrCode: 业务系统返回码,SUCCESS表示成功,其他表示失败。
6977
+ # @type ErrCode: String
6978
+ # @param ErrMessage: 业务系统返回消息。
6979
+ # 注意:此字段可能返回 null,表示取不到有效值。
6980
+ # @type ErrMessage: String
6981
+ # @param Result: 统一下单响应对象。
6982
+ # 注意:此字段可能返回 null,表示取不到有效值。
6983
+ # @type Result: :class:`Tencentcloud::Cpdp.v20190820.models.CreateOpenBankUnifiedOrderPaymentResult`
6984
+ # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
6985
+ # @type RequestId: String
6986
+
6987
+ attr_accessor :ErrCode, :ErrMessage, :Result, :RequestId
6988
+
6989
+ def initialize(errcode=nil, errmessage=nil, result=nil, requestid=nil)
6990
+ @ErrCode = errcode
6991
+ @ErrMessage = errmessage
6992
+ @Result = result
6993
+ @RequestId = requestid
6994
+ end
6995
+
6996
+ def deserialize(params)
6997
+ @ErrCode = params['ErrCode']
6998
+ @ErrMessage = params['ErrMessage']
6999
+ unless params['Result'].nil?
7000
+ @Result = CreateOpenBankUnifiedOrderPaymentResult.new
7001
+ @Result.deserialize(params['Result'])
7002
+ end
7003
+ @RequestId = params['RequestId']
7004
+ end
7005
+ end
7006
+
6882
7007
  # CreateOpenBankMerchant请求参数结构体
6883
7008
  class CreateOpenBankMerchantRequest < TencentCloud::Common::AbstractModel
6884
7009
  # @param OutMerchantId: 外部商户ID。
@@ -7506,6 +7631,50 @@ module TencentCloud
7506
7631
  end
7507
7632
  end
7508
7633
 
7634
+ # 云企付-支付下单返回响应
7635
+ class CreateOpenBankUnifiedOrderPaymentResult < TencentCloud::Common::AbstractModel
7636
+ # @param ChannelOrderId: 云企付平台订单号。
7637
+ # @type ChannelOrderId: String
7638
+ # @param ThirdPayOrderId: 第三方支付平台返回支付订单号。
7639
+ # 注意:此字段可能返回 null,表示取不到有效值。
7640
+ # @type ThirdPayOrderId: String
7641
+ # @param RedirectInfo: 跳转参数
7642
+ # 渠道为TENPAY,付款方式为EBANK_PAYMENT时必选。
7643
+ # 注意:此字段可能返回 null,表示取不到有效值。
7644
+ # @type RedirectInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankOrderRedirectInfo`
7645
+ # @param OutOrderId: 外部商户订单号,只能是数字、大小写字母,且在同一个接入平台下唯一。
7646
+ # @type OutOrderId: String
7647
+ # @param PayInfo: 渠道扩展支付信息
7648
+ # 注意:此字段可能返回 null,表示取不到有效值。
7649
+ # @type PayInfo: String
7650
+ # @param PayInfoType: 渠道扩展支付信息类型
7651
+ # 注意:此字段可能返回 null,表示取不到有效值。
7652
+ # @type PayInfoType: String
7653
+
7654
+ attr_accessor :ChannelOrderId, :ThirdPayOrderId, :RedirectInfo, :OutOrderId, :PayInfo, :PayInfoType
7655
+
7656
+ def initialize(channelorderid=nil, thirdpayorderid=nil, redirectinfo=nil, outorderid=nil, payinfo=nil, payinfotype=nil)
7657
+ @ChannelOrderId = channelorderid
7658
+ @ThirdPayOrderId = thirdpayorderid
7659
+ @RedirectInfo = redirectinfo
7660
+ @OutOrderId = outorderid
7661
+ @PayInfo = payinfo
7662
+ @PayInfoType = payinfotype
7663
+ end
7664
+
7665
+ def deserialize(params)
7666
+ @ChannelOrderId = params['ChannelOrderId']
7667
+ @ThirdPayOrderId = params['ThirdPayOrderId']
7668
+ unless params['RedirectInfo'].nil?
7669
+ @RedirectInfo = OpenBankOrderRedirectInfo.new
7670
+ @RedirectInfo.deserialize(params['RedirectInfo'])
7671
+ end
7672
+ @OutOrderId = params['OutOrderId']
7673
+ @PayInfo = params['PayInfo']
7674
+ @PayInfoType = params['PayInfoType']
7675
+ end
7676
+ end
7677
+
7509
7678
  # CreateOpenBankUnifiedOrder请求参数结构体
7510
7679
  class CreateOpenBankUnifiedOrderRequest < TencentCloud::Common::AbstractModel
7511
7680
  # @param ChannelMerchantId: 渠道商户号。
@@ -11736,6 +11905,54 @@ module TencentCloud
11736
11905
  end
11737
11906
  end
11738
11907
 
11908
+ # 云企付-账单信息
11909
+ class OpenBankBillingInfo < TencentCloud::Common::AbstractModel
11910
+ # @param FirstName: 账单人名字
11911
+ # @type FirstName: String
11912
+ # @param LastName: 账单人姓氏
11913
+ # @type LastName: String
11914
+ # @param AddressOne: 账单地址1
11915
+ # @type AddressOne: String
11916
+ # @param AddressTwo: 账单地址1
11917
+ # @type AddressTwo: String
11918
+ # @param City: 账单地址所在城市
11919
+ # @type City: String
11920
+ # @param State: 账单地址所在州/省,当国家是美国或加拿大时,使用ISO-3166-2:US或ISO -3166-2:CA 中该国家地区编 码标准中的两位字母编码。
11921
+ # @type State: String
11922
+ # @param Country: 账单地址所在国家,使用ISO-3166-1标准中的两位字母编码。
11923
+ # @type Country: String
11924
+ # @param ZipCode: 账单地址邮编
11925
+ # @type ZipCode: String
11926
+ # @param Phone: 账单人手机号
11927
+ # @type Phone: String
11928
+
11929
+ attr_accessor :FirstName, :LastName, :AddressOne, :AddressTwo, :City, :State, :Country, :ZipCode, :Phone
11930
+
11931
+ def initialize(firstname=nil, lastname=nil, addressone=nil, addresstwo=nil, city=nil, state=nil, country=nil, zipcode=nil, phone=nil)
11932
+ @FirstName = firstname
11933
+ @LastName = lastname
11934
+ @AddressOne = addressone
11935
+ @AddressTwo = addresstwo
11936
+ @City = city
11937
+ @State = state
11938
+ @Country = country
11939
+ @ZipCode = zipcode
11940
+ @Phone = phone
11941
+ end
11942
+
11943
+ def deserialize(params)
11944
+ @FirstName = params['FirstName']
11945
+ @LastName = params['LastName']
11946
+ @AddressOne = params['AddressOne']
11947
+ @AddressTwo = params['AddressTwo']
11948
+ @City = params['City']
11949
+ @State = params['State']
11950
+ @Country = params['Country']
11951
+ @ZipCode = params['ZipCode']
11952
+ @Phone = params['Phone']
11953
+ end
11954
+ end
11955
+
11739
11956
  # 网银页面提交html
11740
11957
  class OpenBankFormInfo < TencentCloud::Common::AbstractModel
11741
11958
  # @param FormHtml: 网银页面提交html
@@ -11768,14 +11985,29 @@ module TencentCloud
11768
11985
  # @type GoodsDescription: String
11769
11986
  # @param GoodsBizType: 业务类型。汇付渠道必填,汇付渠道传入固定值100099。
11770
11987
  # @type GoodsBizType: String
11988
+ # @param Sku: 商品编号。
11989
+ # @type Sku: String
11990
+ # @param Price: 商品单价。
11991
+ # @type Price: String
11992
+ # @param Quantity: 商品数量
11993
+ # @type Quantity: String
11994
+ # @param ProductImage: 商品图片url
11995
+ # @type ProductImage: String
11996
+ # @param ProductUrl: 商品链接url
11997
+ # @type ProductUrl: String
11771
11998
 
11772
- attr_accessor :GoodsName, :GoodsDetail, :GoodsDescription, :GoodsBizType
11999
+ attr_accessor :GoodsName, :GoodsDetail, :GoodsDescription, :GoodsBizType, :Sku, :Price, :Quantity, :ProductImage, :ProductUrl
11773
12000
 
11774
- def initialize(goodsname=nil, goodsdetail=nil, goodsdescription=nil, goodsbiztype=nil)
12001
+ def initialize(goodsname=nil, goodsdetail=nil, goodsdescription=nil, goodsbiztype=nil, sku=nil, price=nil, quantity=nil, productimage=nil, producturl=nil)
11775
12002
  @GoodsName = goodsname
11776
12003
  @GoodsDetail = goodsdetail
11777
12004
  @GoodsDescription = goodsdescription
11778
12005
  @GoodsBizType = goodsbiztype
12006
+ @Sku = sku
12007
+ @Price = price
12008
+ @Quantity = quantity
12009
+ @ProductImage = productimage
12010
+ @ProductUrl = producturl
11779
12011
  end
11780
12012
 
11781
12013
  def deserialize(params)
@@ -11783,6 +12015,66 @@ module TencentCloud
11783
12015
  @GoodsDetail = params['GoodsDetail']
11784
12016
  @GoodsDescription = params['GoodsDescription']
11785
12017
  @GoodsBizType = params['GoodsBizType']
12018
+ @Sku = params['Sku']
12019
+ @Price = params['Price']
12020
+ @Quantity = params['Quantity']
12021
+ @ProductImage = params['ProductImage']
12022
+ @ProductUrl = params['ProductUrl']
12023
+ end
12024
+ end
12025
+
12026
+ # 云企付-下单跳转参数,用于小程序前端跳转
12027
+ class OpenBankOrderRedirectInfo < TencentCloud::Common::AbstractModel
12028
+ # @param QRCodeUrl: 生成二维码,引导用户扫码
12029
+ # 注意:此字段可能返回 null,表示取不到有效值。
12030
+ # @type QRCodeUrl: String
12031
+ # @param QRCodeKey: 二维码凭证
12032
+ # 注意:此字段可能返回 null,表示取不到有效值。
12033
+ # @type QRCodeKey: String
12034
+ # @param Url: 跳转 URL,用于客户端跳转,订单未支付时返回该参数
12035
+ # 注意:此字段可能返回 null,表示取不到有效值。
12036
+ # @type Url: String
12037
+ # @param ExpireTime: 跳转凭证过期时间,yyyy-MM-dd HH:mm:ss
12038
+ # 注意:此字段可能返回 null,表示取不到有效值。
12039
+ # @type ExpireTime: String
12040
+ # @param MpAppId: 小程序 appid
12041
+ # 注意:此字段可能返回 null,表示取不到有效值。
12042
+ # @type MpAppId: String
12043
+ # @param MpPath: 小程序路径
12044
+ # 注意:此字段可能返回 null,表示取不到有效值。
12045
+ # @type MpPath: String
12046
+ # @param MpUserName: 小程序原始 id
12047
+ # 注意:此字段可能返回 null,表示取不到有效值。
12048
+ # @type MpUserName: String
12049
+ # @param FormInfo: 网银支付提交页面信息
12050
+ # 注意:此字段可能返回 null,表示取不到有效值。
12051
+ # @type FormInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankFormInfo`
12052
+
12053
+ attr_accessor :QRCodeUrl, :QRCodeKey, :Url, :ExpireTime, :MpAppId, :MpPath, :MpUserName, :FormInfo
12054
+
12055
+ def initialize(qrcodeurl=nil, qrcodekey=nil, url=nil, expiretime=nil, mpappid=nil, mppath=nil, mpusername=nil, forminfo=nil)
12056
+ @QRCodeUrl = qrcodeurl
12057
+ @QRCodeKey = qrcodekey
12058
+ @Url = url
12059
+ @ExpireTime = expiretime
12060
+ @MpAppId = mpappid
12061
+ @MpPath = mppath
12062
+ @MpUserName = mpusername
12063
+ @FormInfo = forminfo
12064
+ end
12065
+
12066
+ def deserialize(params)
12067
+ @QRCodeUrl = params['QRCodeUrl']
12068
+ @QRCodeKey = params['QRCodeKey']
12069
+ @Url = params['Url']
12070
+ @ExpireTime = params['ExpireTime']
12071
+ @MpAppId = params['MpAppId']
12072
+ @MpPath = params['MpPath']
12073
+ @MpUserName = params['MpUserName']
12074
+ unless params['FormInfo'].nil?
12075
+ @FormInfo = OpenBankFormInfo.new
12076
+ @FormInfo.deserialize(params['FormInfo'])
12077
+ end
11786
12078
  end
11787
12079
  end
11788
12080
 
@@ -12234,6 +12526,55 @@ module TencentCloud
12234
12526
  end
12235
12527
  end
12236
12528
 
12529
+ # 云企付-邮寄信息
12530
+ class OpenBankShippingInfo < TencentCloud::Common::AbstractModel
12531
+ # @param FirstName: 收货人名字
12532
+ # @type FirstName: String
12533
+ # @param LastName: 收货人姓氏
12534
+ # @type LastName: String
12535
+ # @param AddressOne: 收货地址1
12536
+ # @type AddressOne: String
12537
+ # @param AddressTwo: 收货地址2
12538
+ # @type AddressTwo: String
12539
+ # @param City: 收货地址所在城市
12540
+ # @type City: String
12541
+ # @param State: 收货地址所在州,当国家是美国或加拿大时,使用ISO-3166-2:US或ISO -3166-2:CA 中该
12542
+ # 国家地区编码标准中的两位字母编码
12543
+ # @type State: String
12544
+ # @param Country: 使用ISO-3166-1标准中的两位字母编码
12545
+ # @type Country: String
12546
+ # @param ZipCode: 收货地址邮编
12547
+ # @type ZipCode: String
12548
+ # @param Phone: 收货联系电话
12549
+ # @type Phone: String
12550
+
12551
+ attr_accessor :FirstName, :LastName, :AddressOne, :AddressTwo, :City, :State, :Country, :ZipCode, :Phone
12552
+
12553
+ def initialize(firstname=nil, lastname=nil, addressone=nil, addresstwo=nil, city=nil, state=nil, country=nil, zipcode=nil, phone=nil)
12554
+ @FirstName = firstname
12555
+ @LastName = lastname
12556
+ @AddressOne = addressone
12557
+ @AddressTwo = addresstwo
12558
+ @City = city
12559
+ @State = state
12560
+ @Country = country
12561
+ @ZipCode = zipcode
12562
+ @Phone = phone
12563
+ end
12564
+
12565
+ def deserialize(params)
12566
+ @FirstName = params['FirstName']
12567
+ @LastName = params['LastName']
12568
+ @AddressOne = params['AddressOne']
12569
+ @AddressTwo = params['AddressTwo']
12570
+ @City = params['City']
12571
+ @State = params['State']
12572
+ @Country = params['Country']
12573
+ @ZipCode = params['ZipCode']
12574
+ @Phone = params['Phone']
12575
+ end
12576
+ end
12577
+
12237
12578
  # 云企付-门店信息
12238
12579
  class OpenBankStoreInfo < TencentCloud::Common::AbstractModel
12239
12580
  # @param Name: 门店名称
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-cpdp
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.430
4
+ version: 3.0.432
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-18 00:00:00.000000000 Z
11
+ date: 2022-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common