Class: Stripe::PaymentIntentUpdateParams::AmountDetails::LineItem::Tax
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::AmountDetails::LineItem::Tax
- Defined in:
- lib/stripe/params/payment_intent_update_params.rb
Instance Attribute Summary collapse
-
#total_tax_amount ⇒ Object
The total tax on an item.
Instance Method Summary collapse
-
#initialize(total_tax_amount: nil) ⇒ Tax
constructor
A new instance of Tax.
Methods inherited from RequestParams
Constructor Details
#initialize(total_tax_amount: nil) ⇒ Tax
Returns a new instance of Tax.
77 78 79 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 77 def initialize(total_tax_amount: nil) @total_tax_amount = total_tax_amount end |
Instance Attribute Details
#total_tax_amount ⇒ Object
The total tax on an item. Non-negative integer.
75 76 77 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 75 def total_tax_amount @total_tax_amount end |