Class: Stripe::PaymentIntentCreateParams::PaymentDetails::LodgingDatum::Total::Tax
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentDetails::LodgingDatum::Total::Tax
- Defined in:
- lib/stripe/params/payment_intent_create_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
Constructor Details
#initialize(tax_exempt_indicator: nil, taxes: nil) ⇒ Tax
Returns a new instance of Tax.
1736 1737 1738 1739 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1736 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.
1732 1733 1734 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1732 def tax_exempt_indicator @tax_exempt_indicator end |
#taxes ⇒ Object
Tax details.
1734 1735 1736 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1734 def taxes @taxes end |