Class: Stripe::FxQuoteCreateParams::Usage::Transfer

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/fx_quote_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(destination: nil) ⇒ Transfer

Returns a new instance of Transfer.



29
30
31
# File 'lib/stripe/params/fx_quote_create_params.rb', line 29

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

Instance Attribute Details

#destinationObject

The Stripe account ID that the funds will be transferred to.

This field should match the account ID that would be used in the Transfer’s destination field.



27
28
29
# File 'lib/stripe/params/fx_quote_create_params.rb', line 27

def destination
  @destination
end