Class: FinchAPI::Models::AccessTokenCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- FinchAPI::Models::AccessTokenCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/finch_api/models/access_token_create_params.rb
Overview
Instance Attribute Summary collapse
-
#client_id ⇒ String?
The client ID for your application.
-
#client_secret ⇒ String?
The client secret for your application.
-
#code ⇒ String
The authorization code received from the authorization server.
-
#redirect_uri ⇒ String?
The redirect URI used in the authorization request (optional).
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
- #initialize(code: , client_id: nil, client_secret: nil, redirect_uri: nil, request_options: {}) ⇒ Object constructor
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(code: , client_id: nil, client_secret: nil, redirect_uri: nil, request_options: {}) ⇒ Object
|
|
# File 'lib/finch_api/models/access_token_create_params.rb', line 34
|
Instance Attribute Details
#client_id ⇒ String?
The client ID for your application
20 |
# File 'lib/finch_api/models/access_token_create_params.rb', line 20 optional :client_id, String |
#client_secret ⇒ String?
The client secret for your application
26 |
# File 'lib/finch_api/models/access_token_create_params.rb', line 26 optional :client_secret, String |
#code ⇒ String
The authorization code received from the authorization server
14 |
# File 'lib/finch_api/models/access_token_create_params.rb', line 14 required :code, String |
#redirect_uri ⇒ String?
The redirect URI used in the authorization request (optional)
32 |
# File 'lib/finch_api/models/access_token_create_params.rb', line 32 optional :redirect_uri, String |