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.
73 74 75 76 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 73 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`.
69 70 71 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 69 def account @account end |
#authorization ⇒ Object
The authorization to relink.
71 72 73 |
# File 'lib/stripe/params/financial_connections/session_create_params.rb', line 71 def @authorization end |