Class: Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Crypto::DepositOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentMethodOptions::Crypto::DepositOptions
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Instance Attribute Summary collapse
-
#networks ⇒ Object
The blockchain networks to support for deposits.
-
#static_address ⇒ Object
If true, provisions a permanent per-customer deposit address reused across PaymentIntents.
Instance Method Summary collapse
-
#initialize(networks: nil, static_address: nil) ⇒ DepositOptions
constructor
A new instance of DepositOptions.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(networks: nil, static_address: nil) ⇒ DepositOptions
Returns a new instance of DepositOptions.
3747 3748 3749 3750 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3747 def initialize(networks: nil, static_address: nil) @networks = networks @static_address = static_address end |
Instance Attribute Details
#networks ⇒ Object
The blockchain networks to support for deposits. Learn more about [supported networks and tokens](docs.stripe.com/payments/deposit-mode-stablecoin-payments#token-and-network-support).
3743 3744 3745 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3743 def networks @networks end |
#static_address ⇒ Object
If true, provisions a permanent per-customer deposit address reused across PaymentIntents.
3745 3746 3747 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 3745 def static_address @static_address end |