Class: Stripe::InvoiceLineItemUpdateParams::PriceData::ProductData::TaxDetails

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

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(performance_location: nil, tax_code: nil) ⇒ TaxDetails

Returns a new instance of TaxDetails.



69
70
71
72
# File 'lib/stripe/params/invoice_line_item_update_params.rb', line 69

def initialize(performance_location: nil, tax_code: nil)
  @performance_location = performance_location
  @tax_code = tax_code
end

Instance Attribute Details

#performance_locationObject

A tax location ID. Depending on the [tax code](/tax/tax-for-tickets/reference/tax-location-performance), this is required, optional, or not supported.



65
66
67
# File 'lib/stripe/params/invoice_line_item_update_params.rb', line 65

def performance_location
  @performance_location
end

#tax_codeObject



67
68
69
# File 'lib/stripe/params/invoice_line_item_update_params.rb', line 67

def tax_code
  @tax_code
end