Class: ServiceStack::GetAccessTokenResponse
- Inherits:
-
Object
- Object
- ServiceStack::GetAccessTokenResponse
- Includes:
- DTO
- Defined in:
- lib/servicestack/types.rb
Overview
The Response of GetAccessToken.
Instance Attribute Summary collapse
-
#access_token ⇒ Object
Returns the value of attribute access_token.
-
#meta ⇒ Object
Returns the value of attribute meta.
-
#response_status ⇒ Object
Returns the value of attribute response_status.
Class Method Summary collapse
Methods included from DTO
#==, included, #initialize, #inspect, #to_hash, #to_json
Instance Attribute Details
#access_token ⇒ Object
Returns the value of attribute access_token.
295 296 297 |
# File 'lib/servicestack/types.rb', line 295 def access_token @access_token end |
#meta ⇒ Object
Returns the value of attribute meta.
295 296 297 |
# File 'lib/servicestack/types.rb', line 295 def @meta end |
#response_status ⇒ Object
Returns the value of attribute response_status.
295 296 297 |
# File 'lib/servicestack/types.rb', line 295 def response_status @response_status end |
Class Method Details
.properties ⇒ Object
297 298 299 300 301 302 303 |
# File 'lib/servicestack/types.rb', line 297 def self.properties { access_token: { name: 'accessToken' }, response_status: { name: 'responseStatus', type: ResponseStatus }, meta: { name: 'meta' }, } end |