Class: Stripe::V2::MoneyManagement::OutboundPaymentQuoteCreateParams::DeliveryOptions

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(speed: nil, bank_account: nil) ⇒ DeliveryOptions

Returns a new instance of DeliveryOptions.



26
27
28
29
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 26

def initialize(speed: nil, bank_account: nil)
  @speed = speed
  @bank_account = 
end

Instance Attribute Details

#bank_accountObject

Open Enum. Method for bank account.



24
25
26
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 24

def 
  @bank_account
end

#speedObject

Open Enum. Speed of the payout.



22
23
24
# File 'lib/stripe/params/v2/money_management/outbound_payment_quote_create_params.rb', line 22

def speed
  @speed
end