Class: TencentCloud::Billing::V20180709::ActionSummaryOverviewItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Billing::V20180709::ActionSummaryOverviewItem
- Defined in:
- lib/v20180709/models.rb
Overview
按交易类型汇总消费详情
Instance Attribute Summary collapse
- #ActionType ⇒ Object
- #ActionTypeName ⇒ Object
- #BillMonth ⇒ Object
- #CashPayAmount ⇒ Object
- #IncentivePayAmount ⇒ Object
- #RealTotalCost ⇒ Object
- #RealTotalCostRatio ⇒ Object
- #TotalCost ⇒ Object
- #TransferPayAmount ⇒ Object
- #VoucherPayAmount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(actiontype = nil, actiontypename = nil, realtotalcostratio = nil, realtotalcost = nil, cashpayamount = nil, incentivepayamount = nil, voucherpayamount = nil, transferpayamount = nil, billmonth = nil, totalcost = nil) ⇒ ActionSummaryOverviewItem
constructor
A new instance of ActionSummaryOverviewItem.
Constructor Details
#initialize(actiontype = nil, actiontypename = nil, realtotalcostratio = nil, realtotalcost = nil, cashpayamount = nil, incentivepayamount = nil, voucherpayamount = nil, transferpayamount = nil, billmonth = nil, totalcost = nil) ⇒ ActionSummaryOverviewItem
Returns a new instance of ActionSummaryOverviewItem.
45 46 47 48 49 50 51 52 53 54 55 56 |
# File 'lib/v20180709/models.rb', line 45 def initialize(actiontype=nil, actiontypename=nil, realtotalcostratio=nil, realtotalcost=nil, cashpayamount=nil, incentivepayamount=nil, voucherpayamount=nil, transferpayamount=nil, billmonth=nil, totalcost=nil) @ActionType = actiontype @ActionTypeName = actiontypename @RealTotalCostRatio = realtotalcostratio @RealTotalCost = realtotalcost @CashPayAmount = cashpayamount @IncentivePayAmount = incentivepayamount @VoucherPayAmount = voucherpayamount @TransferPayAmount = transferpayamount @BillMonth = billmonth @TotalCost = totalcost end |
Instance Attribute Details
#ActionType ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def ActionType @ActionType end |
#ActionTypeName ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def ActionTypeName @ActionTypeName end |
#BillMonth ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def BillMonth @BillMonth end |
#CashPayAmount ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def CashPayAmount @CashPayAmount end |
#IncentivePayAmount ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def IncentivePayAmount @IncentivePayAmount end |
#RealTotalCost ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def RealTotalCost @RealTotalCost end |
#RealTotalCostRatio ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def RealTotalCostRatio @RealTotalCostRatio end |
#TotalCost ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def TotalCost @TotalCost end |
#TransferPayAmount ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def TransferPayAmount @TransferPayAmount end |
#VoucherPayAmount ⇒ Object
43 44 45 |
# File 'lib/v20180709/models.rb', line 43 def VoucherPayAmount @VoucherPayAmount end |
Instance Method Details
#deserialize(params) ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 |
# File 'lib/v20180709/models.rb', line 58 def deserialize(params) @ActionType = params['ActionType'] @ActionTypeName = params['ActionTypeName'] @RealTotalCostRatio = params['RealTotalCostRatio'] @RealTotalCost = params['RealTotalCost'] @CashPayAmount = params['CashPayAmount'] @IncentivePayAmount = params['IncentivePayAmount'] @VoucherPayAmount = params['VoucherPayAmount'] @TransferPayAmount = params['TransferPayAmount'] @BillMonth = params['BillMonth'] @TotalCost = params['TotalCost'] end |