Class: Stripe::FxQuoteCreateParams::Usage::Transfer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FxQuoteCreateParams::Usage::Transfer
- Defined in:
- lib/stripe/params/fx_quote_create_params.rb
Instance Attribute Summary collapse
-
#destination ⇒ Object
The Stripe account ID that the funds will be transferred to.
Instance Method Summary collapse
-
#initialize(destination: nil) ⇒ Transfer
constructor
A new instance of Transfer.
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
#destination ⇒ Object
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 |