Class: Stripe::FxQuote::CreateParams::Usage::Transfer
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FxQuote::CreateParams::Usage::Transfer
- Defined in:
- lib/stripe/resources/fx_quote.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
Constructor Details
#initialize(destination: nil) ⇒ Transfer
Returns a new instance of Transfer.
149 150 151 |
# File 'lib/stripe/resources/fx_quote.rb', line 149 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.
147 148 149 |
# File 'lib/stripe/resources/fx_quote.rb', line 147 def destination @destination end |