tencentcloud-sdk-billing 3.0.386 → 3.0.387
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/v20180709/models.rb +52 -12
- 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: 808ed7387408251f9d50c765e6ba6448567f8e5f
|
4
|
+
data.tar.gz: 6f72816a9fec891dfc3666fa62ae736f632e7fb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4f590e502d0a80e550dc38e68b216141671a5bea2735163391686493d98c4bfdd51b66d87908e9b8eb811f834788eaac0cbbc44012b66157e0070d8702a6cc8
|
7
|
+
data.tar.gz: 6ef102a50743664b2523e133aa1a9912d0186cb70162ce19ab22711e2f71627ba37eaec24ebacfd740b0e7b81f27d406a91915fd00f525f9bdb546ad71919daa
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.387
|
data/lib/v20180709/models.rb
CHANGED
@@ -612,10 +612,12 @@ module TencentCloud
|
|
612
612
|
# @type BillMonth: String
|
613
613
|
# @param TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
614
614
|
# @type TotalCost: String
|
615
|
+
# @param TransferPayAmount: 分成金金额
|
616
|
+
# @type TransferPayAmount: String
|
615
617
|
|
616
|
-
attr_accessor :BusinessCode, :BusinessCodeName, :RealTotalCost, :RealTotalCostRatio, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :BillMonth, :TotalCost
|
618
|
+
attr_accessor :BusinessCode, :BusinessCodeName, :RealTotalCost, :RealTotalCostRatio, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :BillMonth, :TotalCost, :TransferPayAmount
|
617
619
|
|
618
|
-
def initialize(businesscode=nil, businesscodename=nil, realtotalcost=nil, realtotalcostratio=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, billmonth=nil, totalcost=nil)
|
620
|
+
def initialize(businesscode=nil, businesscodename=nil, realtotalcost=nil, realtotalcostratio=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, billmonth=nil, totalcost=nil, transferpayamount=nil)
|
619
621
|
@BusinessCode = businesscode
|
620
622
|
@BusinessCodeName = businesscodename
|
621
623
|
@RealTotalCost = realtotalcost
|
@@ -625,6 +627,7 @@ module TencentCloud
|
|
625
627
|
@VoucherPayAmount = voucherpayamount
|
626
628
|
@BillMonth = billmonth
|
627
629
|
@TotalCost = totalcost
|
630
|
+
@TransferPayAmount = transferpayamount
|
628
631
|
end
|
629
632
|
|
630
633
|
def deserialize(params)
|
@@ -637,6 +640,7 @@ module TencentCloud
|
|
637
640
|
@VoucherPayAmount = params['VoucherPayAmount']
|
638
641
|
@BillMonth = params['BillMonth']
|
639
642
|
@TotalCost = params['TotalCost']
|
643
|
+
@TransferPayAmount = params['TransferPayAmount']
|
640
644
|
end
|
641
645
|
end
|
642
646
|
|
@@ -652,15 +656,18 @@ module TencentCloud
|
|
652
656
|
# @type CashPayAmount: String
|
653
657
|
# @param TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
654
658
|
# @type TotalCost: String
|
659
|
+
# @param TransferPayAmount: 分成金金额
|
660
|
+
# @type TransferPayAmount: String
|
655
661
|
|
656
|
-
attr_accessor :RealTotalCost, :VoucherPayAmount, :IncentivePayAmount, :CashPayAmount, :TotalCost
|
662
|
+
attr_accessor :RealTotalCost, :VoucherPayAmount, :IncentivePayAmount, :CashPayAmount, :TotalCost, :TransferPayAmount
|
657
663
|
|
658
|
-
def initialize(realtotalcost=nil, voucherpayamount=nil, incentivepayamount=nil, cashpayamount=nil, totalcost=nil)
|
664
|
+
def initialize(realtotalcost=nil, voucherpayamount=nil, incentivepayamount=nil, cashpayamount=nil, totalcost=nil, transferpayamount=nil)
|
659
665
|
@RealTotalCost = realtotalcost
|
660
666
|
@VoucherPayAmount = voucherpayamount
|
661
667
|
@IncentivePayAmount = incentivepayamount
|
662
668
|
@CashPayAmount = cashpayamount
|
663
669
|
@TotalCost = totalcost
|
670
|
+
@TransferPayAmount = transferpayamount
|
664
671
|
end
|
665
672
|
|
666
673
|
def deserialize(params)
|
@@ -669,6 +676,7 @@ module TencentCloud
|
|
669
676
|
@IncentivePayAmount = params['IncentivePayAmount']
|
670
677
|
@CashPayAmount = params['CashPayAmount']
|
671
678
|
@TotalCost = params['TotalCost']
|
679
|
+
@TransferPayAmount = params['TransferPayAmount']
|
672
680
|
end
|
673
681
|
end
|
674
682
|
|
@@ -3169,10 +3177,12 @@ module TencentCloud
|
|
3169
3177
|
# @type VoucherPayAmount: String
|
3170
3178
|
# @param TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
3171
3179
|
# @type TotalCost: String
|
3180
|
+
# @param TransferPayAmount: 分成金金额
|
3181
|
+
# @type TransferPayAmount: String
|
3172
3182
|
|
3173
|
-
attr_accessor :PayMode, :PayModeName, :RealTotalCost, :RealTotalCostRatio, :Detail, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :TotalCost
|
3183
|
+
attr_accessor :PayMode, :PayModeName, :RealTotalCost, :RealTotalCostRatio, :Detail, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :TotalCost, :TransferPayAmount
|
3174
3184
|
|
3175
|
-
def initialize(paymode=nil, paymodename=nil, realtotalcost=nil, realtotalcostratio=nil, detail=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, totalcost=nil)
|
3185
|
+
def initialize(paymode=nil, paymodename=nil, realtotalcost=nil, realtotalcostratio=nil, detail=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, totalcost=nil, transferpayamount=nil)
|
3176
3186
|
@PayMode = paymode
|
3177
3187
|
@PayModeName = paymodename
|
3178
3188
|
@RealTotalCost = realtotalcost
|
@@ -3182,6 +3192,7 @@ module TencentCloud
|
|
3182
3192
|
@IncentivePayAmount = incentivepayamount
|
3183
3193
|
@VoucherPayAmount = voucherpayamount
|
3184
3194
|
@TotalCost = totalcost
|
3195
|
+
@TransferPayAmount = transferpayamount
|
3185
3196
|
end
|
3186
3197
|
|
3187
3198
|
def deserialize(params)
|
@@ -3201,6 +3212,7 @@ module TencentCloud
|
|
3201
3212
|
@IncentivePayAmount = params['IncentivePayAmount']
|
3202
3213
|
@VoucherPayAmount = params['VoucherPayAmount']
|
3203
3214
|
@TotalCost = params['TotalCost']
|
3215
|
+
@TransferPayAmount = params['TransferPayAmount']
|
3204
3216
|
end
|
3205
3217
|
end
|
3206
3218
|
|
@@ -3244,10 +3256,12 @@ module TencentCloud
|
|
3244
3256
|
# @type BillMonth: String
|
3245
3257
|
# @param TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
3246
3258
|
# @type TotalCost: String
|
3259
|
+
# @param TransferPayAmount: 分成金金额
|
3260
|
+
# @type TransferPayAmount: String
|
3247
3261
|
|
3248
|
-
attr_accessor :ProjectId, :ProjectName, :RealTotalCost, :RealTotalCostRatio, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :BillMonth, :TotalCost
|
3262
|
+
attr_accessor :ProjectId, :ProjectName, :RealTotalCost, :RealTotalCostRatio, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :BillMonth, :TotalCost, :TransferPayAmount
|
3249
3263
|
|
3250
|
-
def initialize(projectid=nil, projectname=nil, realtotalcost=nil, realtotalcostratio=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, billmonth=nil, totalcost=nil)
|
3264
|
+
def initialize(projectid=nil, projectname=nil, realtotalcost=nil, realtotalcostratio=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, billmonth=nil, totalcost=nil, transferpayamount=nil)
|
3251
3265
|
@ProjectId = projectid
|
3252
3266
|
@ProjectName = projectname
|
3253
3267
|
@RealTotalCost = realtotalcost
|
@@ -3257,6 +3271,7 @@ module TencentCloud
|
|
3257
3271
|
@VoucherPayAmount = voucherpayamount
|
3258
3272
|
@BillMonth = billmonth
|
3259
3273
|
@TotalCost = totalcost
|
3274
|
+
@TransferPayAmount = transferpayamount
|
3260
3275
|
end
|
3261
3276
|
|
3262
3277
|
def deserialize(params)
|
@@ -3269,6 +3284,7 @@ module TencentCloud
|
|
3269
3284
|
@VoucherPayAmount = params['VoucherPayAmount']
|
3270
3285
|
@BillMonth = params['BillMonth']
|
3271
3286
|
@TotalCost = params['TotalCost']
|
3287
|
+
@TransferPayAmount = params['TransferPayAmount']
|
3272
3288
|
end
|
3273
3289
|
end
|
3274
3290
|
|
@@ -3293,10 +3309,12 @@ module TencentCloud
|
|
3293
3309
|
# @type BillMonth: String
|
3294
3310
|
# @param TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
3295
3311
|
# @type TotalCost: String
|
3312
|
+
# @param TransferPayAmount: 分成金金额
|
3313
|
+
# @type TransferPayAmount: String
|
3296
3314
|
|
3297
|
-
attr_accessor :RegionId, :RegionName, :RealTotalCost, :RealTotalCostRatio, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :BillMonth, :TotalCost
|
3315
|
+
attr_accessor :RegionId, :RegionName, :RealTotalCost, :RealTotalCostRatio, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :BillMonth, :TotalCost, :TransferPayAmount
|
3298
3316
|
|
3299
|
-
def initialize(regionid=nil, regionname=nil, realtotalcost=nil, realtotalcostratio=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, billmonth=nil, totalcost=nil)
|
3317
|
+
def initialize(regionid=nil, regionname=nil, realtotalcost=nil, realtotalcostratio=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, billmonth=nil, totalcost=nil, transferpayamount=nil)
|
3300
3318
|
@RegionId = regionid
|
3301
3319
|
@RegionName = regionname
|
3302
3320
|
@RealTotalCost = realtotalcost
|
@@ -3306,6 +3324,7 @@ module TencentCloud
|
|
3306
3324
|
@VoucherPayAmount = voucherpayamount
|
3307
3325
|
@BillMonth = billmonth
|
3308
3326
|
@TotalCost = totalcost
|
3327
|
+
@TransferPayAmount = transferpayamount
|
3309
3328
|
end
|
3310
3329
|
|
3311
3330
|
def deserialize(params)
|
@@ -3318,6 +3337,7 @@ module TencentCloud
|
|
3318
3337
|
@VoucherPayAmount = params['VoucherPayAmount']
|
3319
3338
|
@BillMonth = params['BillMonth']
|
3320
3339
|
@TotalCost = params['TotalCost']
|
3340
|
+
@TransferPayAmount = params['TransferPayAmount']
|
3321
3341
|
end
|
3322
3342
|
end
|
3323
3343
|
|
@@ -3357,14 +3377,30 @@ module TencentCloud
|
|
3357
3377
|
# @param TotalCost: 原价,单位为元。TotalCost字段自账单3.0(即2021-05)之后开始生效,账单3.0之前返回"-"。合同价的情况下,TotalCost字段与官网价格存在差异,也返回“-”。
|
3358
3378
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3359
3379
|
# @type TotalCost: String
|
3380
|
+
# @param CashPayAmount: 现金金额
|
3381
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3382
|
+
# @type CashPayAmount: String
|
3383
|
+
# @param IncentivePayAmount: 赠送金金额
|
3384
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3385
|
+
# @type IncentivePayAmount: String
|
3386
|
+
# @param VoucherPayAmount: 代金券金额
|
3387
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3388
|
+
# @type VoucherPayAmount: String
|
3389
|
+
# @param TransferPayAmount: 分成金金额
|
3390
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3391
|
+
# @type TransferPayAmount: String
|
3360
3392
|
|
3361
|
-
attr_accessor :TagValue, :RealTotalCost, :RealTotalCostRatio, :TotalCost
|
3393
|
+
attr_accessor :TagValue, :RealTotalCost, :RealTotalCostRatio, :TotalCost, :CashPayAmount, :IncentivePayAmount, :VoucherPayAmount, :TransferPayAmount
|
3362
3394
|
|
3363
|
-
def initialize(tagvalue=nil, realtotalcost=nil, realtotalcostratio=nil, totalcost=nil)
|
3395
|
+
def initialize(tagvalue=nil, realtotalcost=nil, realtotalcostratio=nil, totalcost=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, transferpayamount=nil)
|
3364
3396
|
@TagValue = tagvalue
|
3365
3397
|
@RealTotalCost = realtotalcost
|
3366
3398
|
@RealTotalCostRatio = realtotalcostratio
|
3367
3399
|
@TotalCost = totalcost
|
3400
|
+
@CashPayAmount = cashpayamount
|
3401
|
+
@IncentivePayAmount = incentivepayamount
|
3402
|
+
@VoucherPayAmount = voucherpayamount
|
3403
|
+
@TransferPayAmount = transferpayamount
|
3368
3404
|
end
|
3369
3405
|
|
3370
3406
|
def deserialize(params)
|
@@ -3372,6 +3408,10 @@ module TencentCloud
|
|
3372
3408
|
@RealTotalCost = params['RealTotalCost']
|
3373
3409
|
@RealTotalCostRatio = params['RealTotalCostRatio']
|
3374
3410
|
@TotalCost = params['TotalCost']
|
3411
|
+
@CashPayAmount = params['CashPayAmount']
|
3412
|
+
@IncentivePayAmount = params['IncentivePayAmount']
|
3413
|
+
@VoucherPayAmount = params['VoucherPayAmount']
|
3414
|
+
@TransferPayAmount = params['TransferPayAmount']
|
3375
3415
|
end
|
3376
3416
|
end
|
3377
3417
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-billing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.387
|
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-08-
|
11
|
+
date: 2022-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|