Class: Stripe::PaymentIntentCreateParams::Hooks::Inputs

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

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(tax: nil) ⇒ Inputs

Returns a new instance of Inputs.



242
243
244
# File 'lib/stripe/params/payment_intent_create_params.rb', line 242

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

Instance Attribute Details

#taxObject

Tax arguments for automations



240
241
242
# File 'lib/stripe/params/payment_intent_create_params.rb', line 240

def tax
  @tax
end