Class: Stripe::Issuing::Authorization::FinalizeAmountParams::Fleet::ReportedBreakdown
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::Authorization::FinalizeAmountParams::Fleet::ReportedBreakdown
- Defined in:
- lib/stripe/resources/issuing/authorization.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.
1115 1116 1117 1118 1119 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1115 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.
1109 1110 1111 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1109 def fuel @fuel end |
#non_fuel ⇒ Object
Breakdown of non-fuel portion of the purchase.
1111 1112 1113 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1111 def non_fuel @non_fuel end |
#tax ⇒ Object
Information about tax included in this transaction.
1113 1114 1115 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 1113 def tax @tax end |