Class: Stripe::Issuing::Authorization::CaptureParams::PurchaseDetails::Fleet::ReportedBreakdown

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/issuing/authorization.rb

Defined Under Namespace

Classes: Fuel, NonFuel, Tax

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(fuel: nil, non_fuel: nil, tax: nil) ⇒ ReportedBreakdown

Returns a new instance of ReportedBreakdown.



848
849
850
851
852
# File 'lib/stripe/resources/issuing/authorization.rb', line 848

def initialize(fuel: nil, non_fuel: nil, tax: nil)
  @fuel = fuel
  @non_fuel = non_fuel
  @tax = tax
end

Instance Attribute Details

#fuelObject

Breakdown of fuel portion of the purchase.



842
843
844
# File 'lib/stripe/resources/issuing/authorization.rb', line 842

def fuel
  @fuel
end

#non_fuelObject

Breakdown of non-fuel portion of the purchase.



844
845
846
# File 'lib/stripe/resources/issuing/authorization.rb', line 844

def non_fuel
  @non_fuel
end

#taxObject

Information about tax included in this transaction.



846
847
848
# File 'lib/stripe/resources/issuing/authorization.rb', line 846

def tax
  @tax
end