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.
109 110 111 |
# File 'lib/stripe/resources/fx_quote.rb', line 109 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.
107 108 109 |
# File 'lib/stripe/resources/fx_quote.rb', line 107 def destination @destination end |