Class: Stripe::PaymentIntentService::ConfirmParams::AmountDetails::LineItem::Tax
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentService::ConfirmParams::AmountDetails::LineItem::Tax
- Defined in:
- lib/stripe/services/payment_intent_service.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.
8595 8596 8597 |
# File 'lib/stripe/services/payment_intent_service.rb', line 8595 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.
8593 8594 8595 |
# File 'lib/stripe/services/payment_intent_service.rb', line 8593 def total_tax_amount @total_tax_amount end |