Class: Stripe::PaymentIntentCreateParams::PaymentDetails::CarRentalDatum::Total::Tax

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

Defined Under Namespace

Classes: Tax

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(tax_exempt_indicator: nil, taxes: nil) ⇒ Tax

Returns a new instance of Tax.



748
749
750
751
# File 'lib/stripe/params/payment_intent_create_params.rb', line 748

def initialize(tax_exempt_indicator: nil, taxes: nil)
  @tax_exempt_indicator = tax_exempt_indicator
  @taxes = taxes
end

Instance Attribute Details

#tax_exempt_indicatorObject

Indicates if the transaction is tax exempt.



744
745
746
# File 'lib/stripe/params/payment_intent_create_params.rb', line 744

def tax_exempt_indicator
  @tax_exempt_indicator
end

#taxesObject

Array of tax details.



746
747
748
# File 'lib/stripe/params/payment_intent_create_params.rb', line 746

def taxes
  @taxes
end