Class: Stripe::V2::MoneyManagement::OutboundPaymentCreateParams::To::PayoutMethodOptions::BankAccount

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/v2/money_management/outbound_payment_create_params.rb

Defined Under Namespace

Classes: PreferredNetworkOptions

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(preferred_network_options: nil, preferred_networks: nil) ⇒ BankAccount

Returns a new instance of BankAccount.



89
90
91
92
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 89

def initialize(preferred_network_options: nil, preferred_networks: nil)
  @preferred_network_options = preferred_network_options
  @preferred_networks = preferred_networks
end

Instance Attribute Details

#preferred_network_optionsObject

Per-network configuration options.



85
86
87
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 85

def preferred_network_options
  @preferred_network_options
end

#preferred_networksObject

The preferred networks to use for this OutboundPayment.



87
88
89
# File 'lib/stripe/params/v2/money_management/outbound_payment_create_params.rb', line 87

def preferred_networks
  @preferred_networks
end