Class: Stripe::FinancialConnections::SessionCreateParams::RelinkOptions
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::FinancialConnections::SessionCreateParams::RelinkOptions
- Defined in:
- lib/stripe/params/financial_connections/session_create_params.rb
Instance Attribute Summary collapse
-
#account ⇒ Object
The account to relink.
-
#authorization ⇒ Object
The authorization to relink.
Instance Method Summary collapse
-
#initialize(account: nil, authorization: nil) ⇒ RelinkOptions
constructor
A new instance of RelinkOptions.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(account: nil, authorization: nil) ⇒ RelinkOptions
Returns a new instance of RelinkOptions.
81 82 83 84 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 81 def initialize(account: nil, authorization: nil) @account = account @authorization = end |
Instance Attribute Details
#account ⇒ Object
The account to relink. Must belong to the authorization specified in authorization.
77 78 79 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 77 def account @account end |
#authorization ⇒ Object
The authorization to relink.
79 80 81 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 79 def @authorization end |