Class: Stripe::PaymentIntentService::UpdateParams::AmountDetails::LineItem::Tax

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/services/payment_intent_service.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(total_tax_amount: nil) ⇒ Tax

Returns a new instance of Tax.



3977
3978
3979
# File 'lib/stripe/services/payment_intent_service.rb', line 3977

def initialize(total_tax_amount: nil)
  @total_tax_amount = total_tax_amount
end

Instance Attribute Details

#total_tax_amountObject

The total tax on an item. Non-negative integer.



3975
3976
3977
# File 'lib/stripe/services/payment_intent_service.rb', line 3975

def total_tax_amount
  @total_tax_amount
end