Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Crypto::DepositOptions

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_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, static_address: nil) ⇒ DepositOptions

Returns a new instance of DepositOptions.



3761
3762
3763
3764
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3761

def initialize(networks: nil, static_address: nil)
  @networks = networks
  @static_address = static_address
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).



3757
3758
3759
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3757

def networks
  @networks
end

#static_addressObject

If true, provisions a permanent per-customer deposit address reused across PaymentIntents.



3759
3760
3761
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3759

def static_address
  @static_address
end