Module: HubSpotSDK::Models::Auth::OAuthCreateTokenParams::GrantType
- Extended by:
- Internal::Type::Enum
- Defined in:
- lib/hubspot_sdk/models/auth/oauth_create_token_params.rb
Constant Summary collapse
- AUTHORIZATION_CODE =
:authorization_code- REFRESH_TOKEN =
:refresh_token
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Internal::Type::Enum
==, ===, coerce, dump, hash, inspect, to_sorbet_type, values
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/hubspot_sdk/models/auth/oauth_create_token_params.rb', line 68
|
Instance Method Details
#initialize(client_id: nil, client_secret: nil, code: nil, code_verifier: nil, grant_type: nil, redirect_uri: nil, refresh_token: nil, scope: nil, request_options: {}) ⇒ Object
62 63 64 65 66 67 68 69 70 |
# File 'lib/hubspot_sdk/models/auth/oauth_create_token_params.rb', line 62 module GrantType extend HubSpotSDK::Internal::Type::Enum AUTHORIZATION_CODE = :authorization_code REFRESH_TOKEN = :refresh_token # @!method self.values # @return [Array<Symbol>] end |