Class: Stripe::PaymentIntent::CreateParams::AmountDetails::LineItem::Tax
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntent::CreateParams::AmountDetails::LineItem::Tax
- Defined in:
- lib/stripe/resources/payment_intent.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.
2140 2141 2142 |
# File 'lib/stripe/resources/payment_intent.rb', line 2140 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.
2138 2139 2140 |
# File 'lib/stripe/resources/payment_intent.rb', line 2138 def total_tax_amount @total_tax_amount end |