Class: Stripe::Issuing::Authorization::CreateParams::Fleet::ReportedBreakdown
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::Issuing::Authorization::CreateParams::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.
400 401 402 403 404 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 400 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.
394 395 396 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 394 def fuel @fuel end |
#non_fuel ⇒ Object
Breakdown of non-fuel portion of the purchase.
396 397 398 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 396 def non_fuel @non_fuel end |
#tax ⇒ Object
Information about tax included in this transaction.
398 399 400 |
# File 'lib/stripe/resources/issuing/authorization.rb', line 398 def tax @tax end |