Class: Stripe::PaymentIntentUpdateParams::Hooks::Inputs
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentUpdateParams::Hooks::Inputs
- Defined in:
- lib/stripe/params/payment_intent_update_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
Constructor Details
#initialize(tax: nil) ⇒ Inputs
Returns a new instance of Inputs.
190 191 192 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 190 def initialize(tax: nil) @tax = tax end |
Instance Attribute Details
#tax ⇒ Object
Tax arguments for automations
188 189 190 |
# File 'lib/stripe/params/payment_intent_update_params.rb', line 188 def tax @tax end |