Class: Stripe::V2::Billing::LicensedItemCreateParams::TaxDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/billing/licensed_item_create_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(tax_code: nil) ⇒ TaxDetails

Returns a new instance of TaxDetails.



12
13
14
# File 'lib/stripe/params/v2/billing/licensed_item_create_params.rb', line 12

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

Instance Attribute Details

#tax_codeObject

Product tax code (PTC).



10
11
12
# File 'lib/stripe/params/v2/billing/licensed_item_create_params.rb', line 10

def tax_code
  @tax_code
end