Class: GustoEmbedded::Operations::RefreshAccessTokenRequestBody
- Inherits:
-
Crystalline::FieldAugmented
- Object
- Crystalline::FieldAugmented
- GustoEmbedded::Operations::RefreshAccessTokenRequestBody
- Extended by:
- T::Sig
- Defined in:
- lib/gusto_embedded/models/operations/refresh_access_token_requestbody.rb
Instance Method Summary collapse
-
#initialize(client_id: nil, client_secret: nil, grant_type: nil, refresh_token: nil, redirect_uri: nil) ⇒ RefreshAccessTokenRequestBody
constructor
A new instance of RefreshAccessTokenRequestBody.
Methods included from Crystalline::MetadataFields
#field, #fields, included, #marshal_single, #to_dict, #to_json
Constructor Details
#initialize(client_id: nil, client_secret: nil, grant_type: nil, refresh_token: nil, redirect_uri: nil) ⇒ RefreshAccessTokenRequestBody
Returns a new instance of RefreshAccessTokenRequestBody.
27 28 29 30 31 32 33 |
# File 'lib/gusto_embedded/models/operations/refresh_access_token_requestbody.rb', line 27 def initialize(client_id: nil, client_secret: nil, grant_type: nil, refresh_token: nil, redirect_uri: nil) @client_id = client_id @client_secret = client_secret @grant_type = grant_type @refresh_token = refresh_token @redirect_uri = redirect_uri end |