Class: Stripe::V2::Billing::MeteredItemUpdateParams::TaxDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::V2::Billing::MeteredItemUpdateParams::TaxDetails
- Defined in:
- lib/stripe/params/v2/billing/metered_item_update_params.rb
Instance Attribute Summary collapse
-
#tax_code ⇒ Object
Product tax code (PTC).
Instance Method Summary collapse
-
#initialize(tax_code: nil) ⇒ TaxDetails
constructor
A new instance of TaxDetails.
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/metered_item_update_params.rb', line 12 def initialize(tax_code: nil) @tax_code = tax_code end |
Instance Attribute Details
#tax_code ⇒ Object
Product tax code (PTC).
10 11 12 |
# File 'lib/stripe/params/v2/billing/metered_item_update_params.rb', line 10 def tax_code @tax_code end |