Class: Stripe::Issuing::AuthorizationFinalizeAmountParams::Fleet::ReportedBreakdown
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::AuthorizationFinalizeAmountParams::Fleet::ReportedBreakdown
- Defined in:
- lib/stripe/params/issuing/authorization_finalize_amount_params.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#fuel ⇒ Object
Breakdown of fuel portion of the purchase.
-
#non_fuel ⇒ Object
Breakdown of non-fuel portion of the purchase.
-
#tax ⇒ Object
Information about tax included in this transaction.
Instance Method Summary collapse
-
#initialize(fuel: nil, non_fuel: nil, tax: nil) ⇒ ReportedBreakdown
constructor
A new instance of ReportedBreakdown.
Methods inherited from RequestParams
Constructor Details
#initialize(fuel: nil, non_fuel: nil, tax: nil) ⇒ ReportedBreakdown
Returns a new instance of ReportedBreakdown.
72 73 74 75 76 |
# File 'lib/stripe/params/issuing/authorization_finalize_amount_params.rb', line 72 def initialize(fuel: nil, non_fuel: nil, tax: nil) @fuel = fuel @non_fuel = non_fuel @tax = tax end |
Instance Attribute Details
#fuel ⇒ Object
Breakdown of fuel portion of the purchase.
66 67 68 |
# File 'lib/stripe/params/issuing/authorization_finalize_amount_params.rb', line 66 def fuel @fuel end |
#non_fuel ⇒ Object
Breakdown of non-fuel portion of the purchase.
68 69 70 |
# File 'lib/stripe/params/issuing/authorization_finalize_amount_params.rb', line 68 def non_fuel @non_fuel end |
#tax ⇒ Object
Information about tax included in this transaction.
70 71 72 |
# File 'lib/stripe/params/issuing/authorization_finalize_amount_params.rb', line 70 def tax @tax end |