Class: Stripe::ChargeUpdateParams::PaymentDetails::FlightDatum::Total::Tax

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/charge_update_params.rb

Defined Under Namespace

Classes: TaxItem

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(tax_items: nil) ⇒ Tax

Returns a new instance of Tax.



1019
1020
1021
# File 'lib/stripe/params/charge_update_params.rb', line 1019

def initialize(tax_items: nil)
  @tax_items = tax_items
end

Instance Attribute Details

#tax_itemsObject

Array of tax details.



1017
1018
1019
# File 'lib/stripe/params/charge_update_params.rb', line 1017

def tax_items
  @tax_items
end