tencentcloud-sdk-cpdp 1.0.338 → 1.0.339
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 +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20190820/models.rb +42 -16
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7219c5cfbcab1a3f0677a297903ca93aff23eccd
|
4
|
+
data.tar.gz: 49dace0fb305dd03a17960851de6c2db252e71e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75cf465ac121660e9f68900fee5915ccc4288b3bc4c8c58fb4fc553e06efe0326806f180de318432059da57411be67e60035fc3c9ed0d590b2d4b906f6151528
|
7
|
+
data.tar.gz: 11834c075d04f05597d70de6083ebf388d901283ba2cb8720ca9c57df70b301ac1774c3926e693fd7ea1e1127be15bd4174ac894dfaf4c4cfe9fbccc6566f73c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.339
|
data/lib/v20190820/models.rb
CHANGED
@@ -10535,25 +10535,29 @@ module TencentCloud
|
|
10535
10535
|
|
10536
10536
|
# 云企付-商品信息
|
10537
10537
|
class OpenBankGoodsInfo < TencentCloud::Common::AbstractModel
|
10538
|
-
# @param GoodsName:
|
10538
|
+
# @param GoodsName: 商品标题。默认值“商品支付”。
|
10539
10539
|
# @type GoodsName: String
|
10540
|
-
# @param GoodsDetail:
|
10540
|
+
# @param GoodsDetail: 商品详细描述(商品列表)。
|
10541
10541
|
# @type GoodsDetail: String
|
10542
|
-
# @param GoodsDescription:
|
10542
|
+
# @param GoodsDescription: 银行附言。不可以有以下字符:<>+{}()%*&';"[]等特殊符号
|
10543
10543
|
# @type GoodsDescription: String
|
10544
|
+
# @param GoodsBizType: 业务类型。汇付渠道必填,汇付渠道传入固定值100099。
|
10545
|
+
# @type GoodsBizType: String
|
10544
10546
|
|
10545
|
-
attr_accessor :GoodsName, :GoodsDetail, :GoodsDescription
|
10547
|
+
attr_accessor :GoodsName, :GoodsDetail, :GoodsDescription, :GoodsBizType
|
10546
10548
|
|
10547
|
-
def initialize(goodsname=nil, goodsdetail=nil, goodsdescription=nil)
|
10549
|
+
def initialize(goodsname=nil, goodsdetail=nil, goodsdescription=nil, goodsbiztype=nil)
|
10548
10550
|
@GoodsName = goodsname
|
10549
10551
|
@GoodsDetail = goodsdetail
|
10550
10552
|
@GoodsDescription = goodsdescription
|
10553
|
+
@GoodsBizType = goodsbiztype
|
10551
10554
|
end
|
10552
10555
|
|
10553
10556
|
def deserialize(params)
|
10554
10557
|
@GoodsName = params['GoodsName']
|
10555
10558
|
@GoodsDetail = params['GoodsDetail']
|
10556
10559
|
@GoodsDescription = params['GoodsDescription']
|
10560
|
+
@GoodsBizType = params['GoodsBizType']
|
10557
10561
|
end
|
10558
10562
|
end
|
10559
10563
|
|
@@ -10618,21 +10622,26 @@ module TencentCloud
|
|
10618
10622
|
# @param PayerName: 付款方名称。当TENPAY上送付款方入驻云企付的商户名称。
|
10619
10623
|
# @type PayerName: String
|
10620
10624
|
# @param BindSerialNo: 付款方付款账户标识。
|
10621
|
-
# 当付款方式为OPENBANK_PAYMENT时,必输表示企业账户ID;当付款方式为SAFT_ISV时,必须上送付款方的渠道电子记账本ID。
|
10625
|
+
# 当付款方式为OPENBANK_PAYMENT时,必输表示企业账户ID;当付款方式为SAFT_ISV时,必须上送付款方的渠道电子记账本ID;当付款方式为ONLINEBANK,上送付款方银行编号BankId。
|
10622
10626
|
# @type BindSerialNo: String
|
10623
10627
|
# @param AccountType: 付款账户标识类型
|
10624
10628
|
# BANK_ACCOUNT:绑定银行账户
|
10625
10629
|
# ACCOUNT_BOOK_ID:电子记账本ID。
|
10626
10630
|
# 当付款方式为SAFT_ISV时,必须上送类型为ACCOUNT_BOOK_ID。
|
10627
10631
|
# @type AccountType: String
|
10632
|
+
# @param BankCardType: 付款卡类型。汇付渠道必填。
|
10633
|
+
# DEBIT_CARD:借记卡
|
10634
|
+
# CREDIT_CARD:信用卡
|
10635
|
+
# @type BankCardType: String
|
10628
10636
|
|
10629
|
-
attr_accessor :PayerId, :PayerName, :BindSerialNo, :AccountType
|
10637
|
+
attr_accessor :PayerId, :PayerName, :BindSerialNo, :AccountType, :BankCardType
|
10630
10638
|
|
10631
|
-
def initialize(payerid=nil, payername=nil, bindserialno=nil, accounttype=nil)
|
10639
|
+
def initialize(payerid=nil, payername=nil, bindserialno=nil, accounttype=nil, bankcardtype=nil)
|
10632
10640
|
@PayerId = payerid
|
10633
10641
|
@PayerName = payername
|
10634
10642
|
@BindSerialNo = bindserialno
|
10635
10643
|
@AccountType = accounttype
|
10644
|
+
@BankCardType = bankcardtype
|
10636
10645
|
end
|
10637
10646
|
|
10638
10647
|
def deserialize(params)
|
@@ -10640,6 +10649,7 @@ module TencentCloud
|
|
10640
10649
|
@PayerName = params['PayerName']
|
10641
10650
|
@BindSerialNo = params['BindSerialNo']
|
10642
10651
|
@AccountType = params['AccountType']
|
10652
|
+
@BankCardType = params['BankCardType']
|
10643
10653
|
end
|
10644
10654
|
end
|
10645
10655
|
|
@@ -10749,22 +10759,26 @@ module TencentCloud
|
|
10749
10759
|
|
10750
10760
|
# 云企付-设备信息
|
10751
10761
|
class OpenBankSceneInfo < TencentCloud::Common::AbstractModel
|
10752
|
-
# @param PayerClientIp: 用户端实际 ip
|
10762
|
+
# @param PayerClientIp: 用户端实际 ip。汇付渠道必填。
|
10753
10763
|
# @type PayerClientIp: String
|
10754
|
-
# @param PayerUa: 浏览器 User-Agent
|
10764
|
+
# @param PayerUa: 浏览器 User-Agent。
|
10755
10765
|
# @type PayerUa: String
|
10756
|
-
# @param OrderTime:
|
10766
|
+
# @param OrderTime: 用户下单时间。若不上送,服务端默认当前时间。
|
10757
10767
|
# @type OrderTime: String
|
10758
|
-
# @param DeviceId: 终端设备号(门店号或收银设备 ID),示例值:POS1:1
|
10768
|
+
# @param DeviceId: 终端设备号(门店号或收银设备 ID),示例值:POS1:1。
|
10759
10769
|
# @type DeviceId: String
|
10770
|
+
# @param DeviceType: 终端设备类型。MOBILE_BROWSER:手机浏览器,MOBILE_APP:手机应用程序,TABLET:平板;WATCH:手表,PC:电脑PC,OTHER:其他。
|
10771
|
+
# 汇付渠道必填。
|
10772
|
+
# @type DeviceType: String
|
10760
10773
|
|
10761
|
-
attr_accessor :PayerClientIp, :PayerUa, :OrderTime, :DeviceId
|
10774
|
+
attr_accessor :PayerClientIp, :PayerUa, :OrderTime, :DeviceId, :DeviceType
|
10762
10775
|
|
10763
|
-
def initialize(payerclientip=nil, payerua=nil, ordertime=nil, deviceid=nil)
|
10776
|
+
def initialize(payerclientip=nil, payerua=nil, ordertime=nil, deviceid=nil, devicetype=nil)
|
10764
10777
|
@PayerClientIp = payerclientip
|
10765
10778
|
@PayerUa = payerua
|
10766
10779
|
@OrderTime = ordertime
|
10767
10780
|
@DeviceId = deviceid
|
10781
|
+
@DeviceType = devicetype
|
10768
10782
|
end
|
10769
10783
|
|
10770
10784
|
def deserialize(params)
|
@@ -10772,6 +10786,7 @@ module TencentCloud
|
|
10772
10786
|
@PayerUa = params['PayerUa']
|
10773
10787
|
@OrderTime = params['OrderTime']
|
10774
10788
|
@DeviceId = params['DeviceId']
|
10789
|
+
@DeviceType = params['DeviceType']
|
10775
10790
|
end
|
10776
10791
|
end
|
10777
10792
|
|
@@ -21320,14 +21335,23 @@ module TencentCloud
|
|
21320
21335
|
# @param BankNotice: 银行渠道维护公告。
|
21321
21336
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
21322
21337
|
# @type BankNotice: String
|
21338
|
+
# @param BankId: 支持银行代码
|
21339
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21340
|
+
# @type BankId: String
|
21341
|
+
# @param CardType: 卡类型。
|
21342
|
+
# D:借记卡,C:信用卡,Z:借贷合一卡。
|
21343
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
21344
|
+
# @type CardType: String
|
21323
21345
|
|
21324
|
-
attr_accessor :BankCode, :BankName, :MaintainStatus, :BankNotice
|
21346
|
+
attr_accessor :BankCode, :BankName, :MaintainStatus, :BankNotice, :BankId, :CardType
|
21325
21347
|
|
21326
|
-
def initialize(bankcode=nil, bankname=nil, maintainstatus=nil, banknotice=nil)
|
21348
|
+
def initialize(bankcode=nil, bankname=nil, maintainstatus=nil, banknotice=nil, bankid=nil, cardtype=nil)
|
21327
21349
|
@BankCode = bankcode
|
21328
21350
|
@BankName = bankname
|
21329
21351
|
@MaintainStatus = maintainstatus
|
21330
21352
|
@BankNotice = banknotice
|
21353
|
+
@BankId = bankid
|
21354
|
+
@CardType = cardtype
|
21331
21355
|
end
|
21332
21356
|
|
21333
21357
|
def deserialize(params)
|
@@ -21335,6 +21359,8 @@ module TencentCloud
|
|
21335
21359
|
@BankName = params['BankName']
|
21336
21360
|
@MaintainStatus = params['MaintainStatus']
|
21337
21361
|
@BankNotice = params['BankNotice']
|
21362
|
+
@BankId = params['BankId']
|
21363
|
+
@CardType = params['CardType']
|
21338
21364
|
end
|
21339
21365
|
end
|
21340
21366
|
|
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: 1.0.
|
4
|
+
version: 1.0.339
|
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-06-
|
11
|
+
date: 2022-06-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|