Class: Stripe::ChargeUpdateParams::PaymentDetails::LodgingDatum::Total::Tax
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::ChargeUpdateParams::PaymentDetails::LodgingDatum::Total::Tax
- Defined in:
- lib/stripe/params/charge_update_params.rb
Defined Under Namespace
Classes: Tax
Instance Attribute Summary collapse
-
#tax_exempt_indicator ⇒ Object
Indicates whether the transaction is tax exempt.
-
#taxes ⇒ Object
Tax details.
Instance Method Summary collapse
-
#initialize(tax_exempt_indicator: nil, taxes: nil) ⇒ Tax
constructor
A new instance of Tax.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(tax_exempt_indicator: nil, taxes: nil) ⇒ Tax
Returns a new instance of Tax.
1457 1458 1459 1460 |
# File 'lib/stripe/params/charge_update_params.rb', line 1457 def initialize(tax_exempt_indicator: nil, taxes: nil) @tax_exempt_indicator = tax_exempt_indicator @taxes = taxes end |
Instance Attribute Details
#tax_exempt_indicator ⇒ Object
Indicates whether the transaction is tax exempt.
1453 1454 1455 |
# File 'lib/stripe/params/charge_update_params.rb', line 1453 def tax_exempt_indicator @tax_exempt_indicator end |
#taxes ⇒ Object
Tax details.
1455 1456 1457 |
# File 'lib/stripe/params/charge_update_params.rb', line 1455 def taxes @taxes end |