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