Class: Stripe::PaymentIntentConfirmParams::Hooks::Inputs
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::Hooks::Inputs
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Defined Under Namespace
Classes: Tax
Instance Attribute Summary collapse
-
#tax ⇒ Object
Tax arguments for automations.
Instance Method Summary collapse
-
#initialize(tax: nil) ⇒ Inputs
constructor
A new instance of Inputs.
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.
219 220 221 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 219 def initialize(tax: nil) @tax = tax end |
Instance Attribute Details
#tax ⇒ Object
Tax arguments for automations
217 218 219 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 217 def tax @tax end |