Class: Stripe::PaymentIntentUpdateParams::PaymentMethodOptions::Crypto::DepositOptions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_update_params.rb

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(networks: nil) ⇒ DepositOptions

Returns a new instance of DepositOptions.



3719
3720
3721
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3719

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

Instance Attribute Details

#networksObject

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).



3717
3718
3719
# File 'lib/stripe/params/payment_intent_update_params.rb', line 3717

def networks
  @networks
end