tencentcloud-sdk-cpdp 1.0.344 → 1.0.347
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 +191 -33
- 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: f0417ad552950313132bfc7af3eb036294e871a8
|
4
|
+
data.tar.gz: 188d7eebf2c642b1267007b0663110cc65441880
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a3fcba874f82d9dd358ac6ba4226a09c2992063d4a84bbc74354a857e0d046c38bc3bd5ed85538b7b7fa240bf1117d23bb4ca62b000c379c61ed105b896be2d7
|
7
|
+
data.tar.gz: edbe11ed24caebc9ec778c2061ca71fdc36c1f29a62ec63e6b2c222f289a842fb2d2fbbf5eb35f156a2e2fae043e011fde2e5dc96dd1975148cd0efbf9bad9e2
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.347
|
data/lib/v20190820/models.rb
CHANGED
@@ -1032,16 +1032,23 @@ module TencentCloud
|
|
1032
1032
|
# @type FundingAccountInfo: :class:`Tencentcloud::Cpdp.v20190820.models.FlexFundingAccountInfo`
|
1033
1033
|
# @param Remark: 提现备注
|
1034
1034
|
# @type Remark: String
|
1035
|
+
# @param Environment: 环境类型
|
1036
|
+
# __release__:生产环境
|
1037
|
+
# __sandbox__:沙箱环境
|
1038
|
+
# __test__:测试环境
|
1039
|
+
# 缺省默认为生产环境
|
1040
|
+
# @type Environment: String
|
1035
1041
|
|
1036
|
-
attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :FundingAccountInfo, :Remark
|
1042
|
+
attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :FundingAccountInfo, :Remark, :Environment
|
1037
1043
|
|
1038
|
-
def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, fundingaccountinfo=nil, remark=nil)
|
1044
|
+
def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, fundingaccountinfo=nil, remark=nil, environment=nil)
|
1039
1045
|
@PayeeId = payeeid
|
1040
1046
|
@IncomeType = incometype
|
1041
1047
|
@AmountBeforeTax = amountbeforetax
|
1042
1048
|
@OutOrderId = outorderid
|
1043
1049
|
@FundingAccountInfo = fundingaccountinfo
|
1044
1050
|
@Remark = remark
|
1051
|
+
@Environment = environment
|
1045
1052
|
end
|
1046
1053
|
|
1047
1054
|
def deserialize(params)
|
@@ -1054,6 +1061,7 @@ module TencentCloud
|
|
1054
1061
|
@FundingAccountInfo.deserialize(params['FundingAccountInfo'])
|
1055
1062
|
end
|
1056
1063
|
@Remark = params['Remark']
|
1064
|
+
@Environment = params['Environment']
|
1057
1065
|
end
|
1058
1066
|
end
|
1059
1067
|
|
@@ -1131,15 +1139,22 @@ module TencentCloud
|
|
1131
1139
|
# @type OutOrderId: String
|
1132
1140
|
# @param Remark: 备注
|
1133
1141
|
# @type Remark: String
|
1142
|
+
# @param Environment: 环境类型
|
1143
|
+
# __release__:生产环境
|
1144
|
+
# __sandbox__:沙箱环境
|
1145
|
+
# __test__:测试环境
|
1146
|
+
# 缺省默认为生产环境
|
1147
|
+
# @type Environment: String
|
1134
1148
|
|
1135
|
-
attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :Remark
|
1149
|
+
attr_accessor :PayeeId, :IncomeType, :AmountBeforeTax, :OutOrderId, :Remark, :Environment
|
1136
1150
|
|
1137
|
-
def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, remark=nil)
|
1151
|
+
def initialize(payeeid=nil, incometype=nil, amountbeforetax=nil, outorderid=nil, remark=nil, environment=nil)
|
1138
1152
|
@PayeeId = payeeid
|
1139
1153
|
@IncomeType = incometype
|
1140
1154
|
@AmountBeforeTax = amountbeforetax
|
1141
1155
|
@OutOrderId = outorderid
|
1142
1156
|
@Remark = remark
|
1157
|
+
@Environment = environment
|
1143
1158
|
end
|
1144
1159
|
|
1145
1160
|
def deserialize(params)
|
@@ -1148,6 +1163,7 @@ module TencentCloud
|
|
1148
1163
|
@AmountBeforeTax = params['AmountBeforeTax']
|
1149
1164
|
@OutOrderId = params['OutOrderId']
|
1150
1165
|
@Remark = params['Remark']
|
1166
|
+
@Environment = params['Environment']
|
1151
1167
|
end
|
1152
1168
|
end
|
1153
1169
|
|
@@ -5248,10 +5264,18 @@ module TencentCloud
|
|
5248
5264
|
# @type IdType: Integer
|
5249
5265
|
# @param Remark: 备注
|
5250
5266
|
# @type Remark: String
|
5267
|
+
# @param PhoneNo: 手机号码
|
5268
|
+
# @type PhoneNo: String
|
5269
|
+
# @param Environment: 环境类型
|
5270
|
+
# __release__:生产环境
|
5271
|
+
# __sandbox__:沙箱环境
|
5272
|
+
# __test__:测试环境
|
5273
|
+
# 缺省默认为生产环境
|
5274
|
+
# @type Environment: String
|
5251
5275
|
|
5252
|
-
attr_accessor :OutUserId, :Name, :IdNo, :AccountName, :ServiceProviderId, :TaxInfo, :IdType, :Remark
|
5276
|
+
attr_accessor :OutUserId, :Name, :IdNo, :AccountName, :ServiceProviderId, :TaxInfo, :IdType, :Remark, :PhoneNo, :Environment
|
5253
5277
|
|
5254
|
-
def initialize(outuserid=nil, name=nil, idno=nil, accountname=nil, serviceproviderid=nil, taxinfo=nil, idtype=nil, remark=nil)
|
5278
|
+
def initialize(outuserid=nil, name=nil, idno=nil, accountname=nil, serviceproviderid=nil, taxinfo=nil, idtype=nil, remark=nil, phoneno=nil, environment=nil)
|
5255
5279
|
@OutUserId = outuserid
|
5256
5280
|
@Name = name
|
5257
5281
|
@IdNo = idno
|
@@ -5260,6 +5284,8 @@ module TencentCloud
|
|
5260
5284
|
@TaxInfo = taxinfo
|
5261
5285
|
@IdType = idtype
|
5262
5286
|
@Remark = remark
|
5287
|
+
@PhoneNo = phoneno
|
5288
|
+
@Environment = environment
|
5263
5289
|
end
|
5264
5290
|
|
5265
5291
|
def deserialize(params)
|
@@ -5274,6 +5300,8 @@ module TencentCloud
|
|
5274
5300
|
end
|
5275
5301
|
@IdType = params['IdType']
|
5276
5302
|
@Remark = params['Remark']
|
5303
|
+
@PhoneNo = params['PhoneNo']
|
5304
|
+
@Environment = params['Environment']
|
5277
5305
|
end
|
5278
5306
|
end
|
5279
5307
|
|
@@ -6546,7 +6574,7 @@ module TencentCloud
|
|
6546
6574
|
# @param ThirdPayOrderId: 第三方支付平台返回支付订单号。
|
6547
6575
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6548
6576
|
# @type ThirdPayOrderId: String
|
6549
|
-
# @param RedirectInfo:
|
6577
|
+
# @param RedirectInfo: 跳转参数
|
6550
6578
|
# 渠道为TENPAY,付款方式为EBANK_PAYMENT时必选。
|
6551
6579
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
6552
6580
|
# @type RedirectInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankRedirectInfo`
|
@@ -9802,16 +9830,23 @@ module TencentCloud
|
|
9802
9830
|
# @type OperationType: String
|
9803
9831
|
# @param Remark: 冻结备注
|
9804
9832
|
# @type Remark: String
|
9833
|
+
# @param Environment: 环境类型
|
9834
|
+
# __release__:生产环境
|
9835
|
+
# __sandbox__:沙箱环境
|
9836
|
+
# __test__:测试环境
|
9837
|
+
# 缺省默认为生产环境
|
9838
|
+
# @type Environment: String
|
9805
9839
|
|
9806
|
-
attr_accessor :PayeeId, :AmountBeforeTax, :IncomeType, :OutOrderId, :OperationType, :Remark
|
9840
|
+
attr_accessor :PayeeId, :AmountBeforeTax, :IncomeType, :OutOrderId, :OperationType, :Remark, :Environment
|
9807
9841
|
|
9808
|
-
def initialize(payeeid=nil, amountbeforetax=nil, incometype=nil, outorderid=nil, operationtype=nil, remark=nil)
|
9842
|
+
def initialize(payeeid=nil, amountbeforetax=nil, incometype=nil, outorderid=nil, operationtype=nil, remark=nil, environment=nil)
|
9809
9843
|
@PayeeId = payeeid
|
9810
9844
|
@AmountBeforeTax = amountbeforetax
|
9811
9845
|
@IncomeType = incometype
|
9812
9846
|
@OutOrderId = outorderid
|
9813
9847
|
@OperationType = operationtype
|
9814
9848
|
@Remark = remark
|
9849
|
+
@Environment = environment
|
9815
9850
|
end
|
9816
9851
|
|
9817
9852
|
def deserialize(params)
|
@@ -9821,6 +9856,7 @@ module TencentCloud
|
|
9821
9856
|
@OutOrderId = params['OutOrderId']
|
9822
9857
|
@OperationType = params['OperationType']
|
9823
9858
|
@Remark = params['Remark']
|
9859
|
+
@Environment = params['Environment']
|
9824
9860
|
end
|
9825
9861
|
end
|
9826
9862
|
|
@@ -10910,19 +10946,27 @@ module TencentCloud
|
|
10910
10946
|
# ENABLE:启用
|
10911
10947
|
# DISABLE:停用
|
10912
10948
|
# @type AccountRightStatus: String
|
10949
|
+
# @param Environment: 环境类型
|
10950
|
+
# __release__:生产环境
|
10951
|
+
# __sandbox__:沙箱环境
|
10952
|
+
# __test__:测试环境
|
10953
|
+
# 缺省默认为生产环境
|
10954
|
+
# @type Environment: String
|
10913
10955
|
|
10914
|
-
attr_accessor :PayeeId, :AccountRightType, :AccountRightStatus
|
10956
|
+
attr_accessor :PayeeId, :AccountRightType, :AccountRightStatus, :Environment
|
10915
10957
|
|
10916
|
-
def initialize(payeeid=nil, accountrighttype=nil, accountrightstatus=nil)
|
10958
|
+
def initialize(payeeid=nil, accountrighttype=nil, accountrightstatus=nil, environment=nil)
|
10917
10959
|
@PayeeId = payeeid
|
10918
10960
|
@AccountRightType = accountrighttype
|
10919
10961
|
@AccountRightStatus = accountrightstatus
|
10962
|
+
@Environment = environment
|
10920
10963
|
end
|
10921
10964
|
|
10922
10965
|
def deserialize(params)
|
10923
10966
|
@PayeeId = params['PayeeId']
|
10924
10967
|
@AccountRightType = params['AccountRightType']
|
10925
10968
|
@AccountRightStatus = params['AccountRightStatus']
|
10969
|
+
@Environment = params['Environment']
|
10926
10970
|
end
|
10927
10971
|
end
|
10928
10972
|
|
@@ -11235,6 +11279,28 @@ module TencentCloud
|
|
11235
11279
|
end
|
11236
11280
|
end
|
11237
11281
|
|
11282
|
+
# 网银页面提交html
|
11283
|
+
class OpenBankFormInfo < TencentCloud::Common::AbstractModel
|
11284
|
+
# @param FormHtml: 网银页面提交html
|
11285
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11286
|
+
# @type FormHtml: String
|
11287
|
+
# @param FormEncoding: 网银提交页面字符集
|
11288
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11289
|
+
# @type FormEncoding: String
|
11290
|
+
|
11291
|
+
attr_accessor :FormHtml, :FormEncoding
|
11292
|
+
|
11293
|
+
def initialize(formhtml=nil, formencoding=nil)
|
11294
|
+
@FormHtml = formhtml
|
11295
|
+
@FormEncoding = formencoding
|
11296
|
+
end
|
11297
|
+
|
11298
|
+
def deserialize(params)
|
11299
|
+
@FormHtml = params['FormHtml']
|
11300
|
+
@FormEncoding = params['FormEncoding']
|
11301
|
+
end
|
11302
|
+
end
|
11303
|
+
|
11238
11304
|
# 云企付-商品信息
|
11239
11305
|
class OpenBankGoodsInfo < TencentCloud::Common::AbstractModel
|
11240
11306
|
# @param GoodsName: 商品标题。默认值“商品支付”。
|
@@ -11522,10 +11588,13 @@ module TencentCloud
|
|
11522
11588
|
# @type MpPath: String
|
11523
11589
|
# @param MpUserName: 小程序原始 id
|
11524
11590
|
# @type MpUserName: String
|
11591
|
+
# @param FormInfo: 网银支付提交页面信息
|
11592
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
11593
|
+
# @type FormInfo: :class:`Tencentcloud::Cpdp.v20190820.models.OpenBankFormInfo`
|
11525
11594
|
|
11526
|
-
attr_accessor :QRCodeUrl, :QRCodeKey, :Url, :ExpireTime, :MpAppId, :MpPath, :MpUserName
|
11595
|
+
attr_accessor :QRCodeUrl, :QRCodeKey, :Url, :ExpireTime, :MpAppId, :MpPath, :MpUserName, :FormInfo
|
11527
11596
|
|
11528
|
-
def initialize(qrcodeurl=nil, qrcodekey=nil, url=nil, expiretime=nil, mpappid=nil, mppath=nil, mpusername=nil)
|
11597
|
+
def initialize(qrcodeurl=nil, qrcodekey=nil, url=nil, expiretime=nil, mpappid=nil, mppath=nil, mpusername=nil, forminfo=nil)
|
11529
11598
|
@QRCodeUrl = qrcodeurl
|
11530
11599
|
@QRCodeKey = qrcodekey
|
11531
11600
|
@Url = url
|
@@ -11533,6 +11602,7 @@ module TencentCloud
|
|
11533
11602
|
@MpAppId = mpappid
|
11534
11603
|
@MpPath = mppath
|
11535
11604
|
@MpUserName = mpusername
|
11605
|
+
@FormInfo = forminfo
|
11536
11606
|
end
|
11537
11607
|
|
11538
11608
|
def deserialize(params)
|
@@ -11543,6 +11613,10 @@ module TencentCloud
|
|
11543
11613
|
@MpAppId = params['MpAppId']
|
11544
11614
|
@MpPath = params['MpPath']
|
11545
11615
|
@MpUserName = params['MpUserName']
|
11616
|
+
unless params['FormInfo'].nil?
|
11617
|
+
@FormInfo = OpenBankFormInfo.new
|
11618
|
+
@FormInfo.deserialize(params['FormInfo'])
|
11619
|
+
end
|
11546
11620
|
end
|
11547
11621
|
end
|
11548
11622
|
|
@@ -12518,10 +12592,12 @@ module TencentCloud
|
|
12518
12592
|
# @param Remark: 提现备注
|
12519
12593
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
12520
12594
|
# @type Remark: String
|
12595
|
+
# @param PayeeId: 收款用户ID
|
12596
|
+
# @type PayeeId: String
|
12521
12597
|
|
12522
|
-
attr_accessor :IncomeType, :AmountBeforeTax, :AmountAfterTax, :Tax, :OutOrderId, :OrderId, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark
|
12598
|
+
attr_accessor :IncomeType, :AmountBeforeTax, :AmountAfterTax, :Tax, :OutOrderId, :OrderId, :InitiateTime, :FinishTime, :Status, :StatusDesc, :Remark, :PayeeId
|
12523
12599
|
|
12524
|
-
def initialize(incometype=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil, outorderid=nil, orderid=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil)
|
12600
|
+
def initialize(incometype=nil, amountbeforetax=nil, amountaftertax=nil, tax=nil, outorderid=nil, orderid=nil, initiatetime=nil, finishtime=nil, status=nil, statusdesc=nil, remark=nil, payeeid=nil)
|
12525
12601
|
@IncomeType = incometype
|
12526
12602
|
@AmountBeforeTax = amountbeforetax
|
12527
12603
|
@AmountAfterTax = amountaftertax
|
@@ -12533,6 +12609,7 @@ module TencentCloud
|
|
12533
12609
|
@Status = status
|
12534
12610
|
@StatusDesc = statusdesc
|
12535
12611
|
@Remark = remark
|
12612
|
+
@PayeeId = payeeid
|
12536
12613
|
end
|
12537
12614
|
|
12538
12615
|
def deserialize(params)
|
@@ -12547,6 +12624,7 @@ module TencentCloud
|
|
12547
12624
|
@Status = params['Status']
|
12548
12625
|
@StatusDesc = params['StatusDesc']
|
12549
12626
|
@Remark = params['Remark']
|
12627
|
+
@PayeeId = params['PayeeId']
|
12550
12628
|
end
|
12551
12629
|
end
|
12552
12630
|
|
@@ -15174,19 +15252,27 @@ module TencentCloud
|
|
15174
15252
|
# @type IncomeType: String
|
15175
15253
|
# @param AmountAfterTax: 税后金额
|
15176
15254
|
# @type AmountAfterTax: String
|
15255
|
+
# @param Environment: 环境类型
|
15256
|
+
# __release__:生产环境
|
15257
|
+
# __sandbox__:沙箱环境
|
15258
|
+
# __test__:测试环境
|
15259
|
+
# 缺省默认为生产环境
|
15260
|
+
# @type Environment: String
|
15177
15261
|
|
15178
|
-
attr_accessor :PayeeId, :IncomeType, :AmountAfterTax
|
15262
|
+
attr_accessor :PayeeId, :IncomeType, :AmountAfterTax, :Environment
|
15179
15263
|
|
15180
|
-
def initialize(payeeid=nil, incometype=nil, amountaftertax=nil)
|
15264
|
+
def initialize(payeeid=nil, incometype=nil, amountaftertax=nil, environment=nil)
|
15181
15265
|
@PayeeId = payeeid
|
15182
15266
|
@IncomeType = incometype
|
15183
15267
|
@AmountAfterTax = amountaftertax
|
15268
|
+
@Environment = environment
|
15184
15269
|
end
|
15185
15270
|
|
15186
15271
|
def deserialize(params)
|
15187
15272
|
@PayeeId = params['PayeeId']
|
15188
15273
|
@IncomeType = params['IncomeType']
|
15189
15274
|
@AmountAfterTax = params['AmountAfterTax']
|
15275
|
+
@Environment = params['Environment']
|
15190
15276
|
end
|
15191
15277
|
end
|
15192
15278
|
|
@@ -15236,15 +15322,22 @@ module TencentCloud
|
|
15236
15322
|
# @type EndTime: String
|
15237
15323
|
# @param PageNumber: 分页
|
15238
15324
|
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
15325
|
+
# @param Environment: 环境类型
|
15326
|
+
# __release__:生产环境
|
15327
|
+
# __sandbox__:沙箱环境
|
15328
|
+
# __test__:测试环境
|
15329
|
+
# 缺省默认为生产环境
|
15330
|
+
# @type Environment: String
|
15239
15331
|
|
15240
|
-
attr_accessor :PayeeId, :OperationType, :StartTime, :EndTime, :PageNumber
|
15332
|
+
attr_accessor :PayeeId, :OperationType, :StartTime, :EndTime, :PageNumber, :Environment
|
15241
15333
|
|
15242
|
-
def initialize(payeeid=nil, operationtype=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
15334
|
+
def initialize(payeeid=nil, operationtype=nil, starttime=nil, endtime=nil, pagenumber=nil, environment=nil)
|
15243
15335
|
@PayeeId = payeeid
|
15244
15336
|
@OperationType = operationtype
|
15245
15337
|
@StartTime = starttime
|
15246
15338
|
@EndTime = endtime
|
15247
15339
|
@PageNumber = pagenumber
|
15340
|
+
@Environment = environment
|
15248
15341
|
end
|
15249
15342
|
|
15250
15343
|
def deserialize(params)
|
@@ -15256,6 +15349,7 @@ module TencentCloud
|
|
15256
15349
|
@PageNumber = Paging.new
|
15257
15350
|
@PageNumber.deserialize(params['PageNumber'])
|
15258
15351
|
end
|
15352
|
+
@Environment = params['Environment']
|
15259
15353
|
end
|
15260
15354
|
end
|
15261
15355
|
|
@@ -15299,17 +15393,25 @@ module TencentCloud
|
|
15299
15393
|
# LABOR:劳务所得
|
15300
15394
|
# OCCASION:偶然所得
|
15301
15395
|
# @type IncomeType: String
|
15396
|
+
# @param Environment: 环境类型
|
15397
|
+
# __release__:生产环境
|
15398
|
+
# __sandbox__:沙箱环境
|
15399
|
+
# __test__:测试环境
|
15400
|
+
# 缺省默认为生产环境
|
15401
|
+
# @type Environment: String
|
15302
15402
|
|
15303
|
-
attr_accessor :PayeeId, :IncomeType
|
15403
|
+
attr_accessor :PayeeId, :IncomeType, :Environment
|
15304
15404
|
|
15305
|
-
def initialize(payeeid=nil, incometype=nil)
|
15405
|
+
def initialize(payeeid=nil, incometype=nil, environment=nil)
|
15306
15406
|
@PayeeId = payeeid
|
15307
15407
|
@IncomeType = incometype
|
15408
|
+
@Environment = environment
|
15308
15409
|
end
|
15309
15410
|
|
15310
15411
|
def deserialize(params)
|
15311
15412
|
@PayeeId = params['PayeeId']
|
15312
15413
|
@IncomeType = params['IncomeType']
|
15414
|
+
@Environment = params['Environment']
|
15313
15415
|
end
|
15314
15416
|
end
|
15315
15417
|
|
@@ -15351,17 +15453,25 @@ module TencentCloud
|
|
15351
15453
|
# @type PayeeId: String
|
15352
15454
|
# @param OutUserId: 外部用户ID
|
15353
15455
|
# @type OutUserId: String
|
15456
|
+
# @param Environment: 环境类型
|
15457
|
+
# __release__:生产环境
|
15458
|
+
# __sandbox__:沙箱环境
|
15459
|
+
# __test__:测试环境
|
15460
|
+
# 缺省默认为生产环境
|
15461
|
+
# @type Environment: String
|
15354
15462
|
|
15355
|
-
attr_accessor :PayeeId, :OutUserId
|
15463
|
+
attr_accessor :PayeeId, :OutUserId, :Environment
|
15356
15464
|
|
15357
|
-
def initialize(payeeid=nil, outuserid=nil)
|
15465
|
+
def initialize(payeeid=nil, outuserid=nil, environment=nil)
|
15358
15466
|
@PayeeId = payeeid
|
15359
15467
|
@OutUserId = outuserid
|
15468
|
+
@Environment = environment
|
15360
15469
|
end
|
15361
15470
|
|
15362
15471
|
def deserialize(params)
|
15363
15472
|
@PayeeId = params['PayeeId']
|
15364
15473
|
@OutUserId = params['OutUserId']
|
15474
|
+
@Environment = params['Environment']
|
15365
15475
|
end
|
15366
15476
|
end
|
15367
15477
|
|
@@ -15407,14 +15517,21 @@ module TencentCloud
|
|
15407
15517
|
# @type EndTime: String
|
15408
15518
|
# @param PageNumber: 分页
|
15409
15519
|
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
15520
|
+
# @param Environment: 环境类型
|
15521
|
+
# __release__:生产环境
|
15522
|
+
# __sandbox__:沙箱环境
|
15523
|
+
# __test__:测试环境
|
15524
|
+
# 缺省默认为生产环境
|
15525
|
+
# @type Environment: String
|
15410
15526
|
|
15411
|
-
attr_accessor :PropertyInfo, :StartTime, :EndTime, :PageNumber
|
15527
|
+
attr_accessor :PropertyInfo, :StartTime, :EndTime, :PageNumber, :Environment
|
15412
15528
|
|
15413
|
-
def initialize(propertyinfo=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
15529
|
+
def initialize(propertyinfo=nil, starttime=nil, endtime=nil, pagenumber=nil, environment=nil)
|
15414
15530
|
@PropertyInfo = propertyinfo
|
15415
15531
|
@StartTime = starttime
|
15416
15532
|
@EndTime = endtime
|
15417
15533
|
@PageNumber = pagenumber
|
15534
|
+
@Environment = environment
|
15418
15535
|
end
|
15419
15536
|
|
15420
15537
|
def deserialize(params)
|
@@ -15428,6 +15545,7 @@ module TencentCloud
|
|
15428
15545
|
@PageNumber = Paging.new
|
15429
15546
|
@PageNumber.deserialize(params['PageNumber'])
|
15430
15547
|
end
|
15548
|
+
@Environment = params['Environment']
|
15431
15549
|
end
|
15432
15550
|
end
|
15433
15551
|
|
@@ -15469,17 +15587,25 @@ module TencentCloud
|
|
15469
15587
|
# @type PayeeId: String
|
15470
15588
|
# @param OutUserId: 外部用户ID
|
15471
15589
|
# @type OutUserId: String
|
15590
|
+
# @param Environment: 环境类型
|
15591
|
+
# __release__:生产环境
|
15592
|
+
# __sandbox__:沙箱环境
|
15593
|
+
# __test__:测试环境
|
15594
|
+
# 缺省默认为生产环境
|
15595
|
+
# @type Environment: String
|
15472
15596
|
|
15473
|
-
attr_accessor :PayeeId, :OutUserId
|
15597
|
+
attr_accessor :PayeeId, :OutUserId, :Environment
|
15474
15598
|
|
15475
|
-
def initialize(payeeid=nil, outuserid=nil)
|
15599
|
+
def initialize(payeeid=nil, outuserid=nil, environment=nil)
|
15476
15600
|
@PayeeId = payeeid
|
15477
15601
|
@OutUserId = outuserid
|
15602
|
+
@Environment = environment
|
15478
15603
|
end
|
15479
15604
|
|
15480
15605
|
def deserialize(params)
|
15481
15606
|
@PayeeId = params['PayeeId']
|
15482
15607
|
@OutUserId = params['OutUserId']
|
15608
|
+
@Environment = params['Environment']
|
15483
15609
|
end
|
15484
15610
|
end
|
15485
15611
|
|
@@ -15525,14 +15651,21 @@ module TencentCloud
|
|
15525
15651
|
# @type EndTime: String
|
15526
15652
|
# @param PageNumber: 分页
|
15527
15653
|
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
15654
|
+
# @param Environment: 环境类型
|
15655
|
+
# __release__:生产环境
|
15656
|
+
# __sandbox__:沙箱环境
|
15657
|
+
# __test__:测试环境
|
15658
|
+
# 缺省默认为生产环境
|
15659
|
+
# @type Environment: String
|
15528
15660
|
|
15529
|
-
attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber
|
15661
|
+
attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber, :Environment
|
15530
15662
|
|
15531
|
-
def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
15663
|
+
def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil, environment=nil)
|
15532
15664
|
@PayeeId = payeeid
|
15533
15665
|
@StartTime = starttime
|
15534
15666
|
@EndTime = endtime
|
15535
15667
|
@PageNumber = pagenumber
|
15668
|
+
@Environment = environment
|
15536
15669
|
end
|
15537
15670
|
|
15538
15671
|
def deserialize(params)
|
@@ -15543,6 +15676,7 @@ module TencentCloud
|
|
15543
15676
|
@PageNumber = Paging.new
|
15544
15677
|
@PageNumber.deserialize(params['PageNumber'])
|
15545
15678
|
end
|
15679
|
+
@Environment = params['Environment']
|
15546
15680
|
end
|
15547
15681
|
end
|
15548
15682
|
|
@@ -15584,17 +15718,25 @@ module TencentCloud
|
|
15584
15718
|
# @type OutOrderId: String
|
15585
15719
|
# @param OrderId: 订单ID
|
15586
15720
|
# @type OrderId: String
|
15721
|
+
# @param Environment: 环境类型
|
15722
|
+
# __release__:生产环境
|
15723
|
+
# __sandbox__:沙箱环境
|
15724
|
+
# __test__:测试环境
|
15725
|
+
# 缺省默认为生产环境
|
15726
|
+
# @type Environment: String
|
15587
15727
|
|
15588
|
-
attr_accessor :OutOrderId, :OrderId
|
15728
|
+
attr_accessor :OutOrderId, :OrderId, :Environment
|
15589
15729
|
|
15590
|
-
def initialize(outorderid=nil, orderid=nil)
|
15730
|
+
def initialize(outorderid=nil, orderid=nil, environment=nil)
|
15591
15731
|
@OutOrderId = outorderid
|
15592
15732
|
@OrderId = orderid
|
15733
|
+
@Environment = environment
|
15593
15734
|
end
|
15594
15735
|
|
15595
15736
|
def deserialize(params)
|
15596
15737
|
@OutOrderId = params['OutOrderId']
|
15597
15738
|
@OrderId = params['OrderId']
|
15739
|
+
@Environment = params['Environment']
|
15598
15740
|
end
|
15599
15741
|
end
|
15600
15742
|
|
@@ -15640,14 +15782,28 @@ module TencentCloud
|
|
15640
15782
|
# @type EndTime: String
|
15641
15783
|
# @param PageNumber: 分页
|
15642
15784
|
# @type PageNumber: :class:`Tencentcloud::Cpdp.v20190820.models.Paging`
|
15785
|
+
# @param OperationType: 操作类型。
|
15786
|
+
# ENABLE_SETTLE: 正常结算
|
15787
|
+
# DISABLE_SETTLE: 停用结算
|
15788
|
+
# UNFREEZE_SETTLE: 解冻结算
|
15789
|
+
# 若需要支持多个操作类型,则以;分隔
|
15790
|
+
# @type OperationType: String
|
15791
|
+
# @param Environment: 环境类型
|
15792
|
+
# __release__:生产环境
|
15793
|
+
# __sandbox__:沙箱环境
|
15794
|
+
# __test__:测试环境
|
15795
|
+
# 缺省默认为生产环境
|
15796
|
+
# @type Environment: String
|
15643
15797
|
|
15644
|
-
attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber
|
15798
|
+
attr_accessor :PayeeId, :StartTime, :EndTime, :PageNumber, :OperationType, :Environment
|
15645
15799
|
|
15646
|
-
def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil)
|
15800
|
+
def initialize(payeeid=nil, starttime=nil, endtime=nil, pagenumber=nil, operationtype=nil, environment=nil)
|
15647
15801
|
@PayeeId = payeeid
|
15648
15802
|
@StartTime = starttime
|
15649
15803
|
@EndTime = endtime
|
15650
15804
|
@PageNumber = pagenumber
|
15805
|
+
@OperationType = operationtype
|
15806
|
+
@Environment = environment
|
15651
15807
|
end
|
15652
15808
|
|
15653
15809
|
def deserialize(params)
|
@@ -15658,6 +15814,8 @@ module TencentCloud
|
|
15658
15814
|
@PageNumber = Paging.new
|
15659
15815
|
@PageNumber.deserialize(params['PageNumber'])
|
15660
15816
|
end
|
15817
|
+
@OperationType = params['OperationType']
|
15818
|
+
@Environment = params['Environment']
|
15661
15819
|
end
|
15662
15820
|
end
|
15663
15821
|
|
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.347
|
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-
|
11
|
+
date: 2022-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|