Class: FinchAPI::Models::Sandbox::Connections::AccountUpdateResponse
- Defined in:
- lib/finch-api/models/sandbox/connections/account_update_response.rb
Defined Under Namespace
Modules: AuthenticationType
Instance Attribute Summary collapse
-
#account_id ⇒ String
- DEPRECATED
-
Use ‘connection_id` to associate a connection with an access token.
- #authentication_type ⇒ Symbol, FinchAPI::Models::Sandbox::Connections::AccountUpdateResponse::AuthenticationType
-
#company_id ⇒ String
- DEPRECATED
-
Use ‘connection_id` to associate a connection with an access token.
-
#connection_id ⇒ String?
The ID of the new connection.
- #products ⇒ Array<String>
-
#provider_id ⇒ String
The ID of the provider associated with the ‘access_token`.
Instance Method Summary collapse
-
#initialize(account_id:, authentication_type:, company_id:, products:, provider_id:, connection_id: nil) ⇒ AccountUpdateResponse
constructor
A new instance of AccountUpdateResponse.
Constructor Details
#initialize(account_id:, authentication_type:, company_id:, products:, provider_id:, connection_id: nil) ⇒ AccountUpdateResponse
Returns a new instance of AccountUpdateResponse.
8 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 8 def initialize(account_id:, authentication_type:, company_id:, products:, provider_id:, connection_id: nil, **) = super |
Instance Attribute Details
#account_id ⇒ String
- DEPRECATED
-
Use ‘connection_id` to associate a connection with an access token
12 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 12 required :account_id, String |
#authentication_type ⇒ Symbol, FinchAPI::Models::Sandbox::Connections::AccountUpdateResponse::AuthenticationType
17 18 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 17 required :authentication_type, enum: -> { FinchAPI::Models::Sandbox::Connections::AccountUpdateResponse::AuthenticationType } |
#company_id ⇒ String
- DEPRECATED
-
Use ‘connection_id` to associate a connection with an access token
24 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 24 required :company_id, String |
#connection_id ⇒ String?
The ID of the new connection
41 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 41 optional :connection_id, String |
#products ⇒ Array<String>
29 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 29 required :products, FinchAPI::ArrayOf[String] |
#provider_id ⇒ String
The ID of the provider associated with the ‘access_token`
35 |
# File 'lib/finch-api/models/sandbox/connections/account_update_response.rb', line 35 required :provider_id, String |