Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Crypto::DepositOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Crypto::DepositOptions
- Defined in:
- lib/stripe/params/payment_intent_create_params.rb
Instance Attribute Summary collapse
-
#networks ⇒ Object
The blockchain networks to support for deposits.
Instance Method Summary collapse
-
#initialize(networks: 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) ⇒ DepositOptions
Returns a new instance of DepositOptions.
3313 3314 3315 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3313 def initialize(networks: nil) @networks = networks 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).
3311 3312 3313 |
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3311 def networks @networks end |