Class: ServiceStack::GetAccessTokenResponse

Inherits:
Object
  • Object
show all
Includes:
DTO
Defined in:
lib/servicestack/types.rb

Overview

The Response of GetAccessToken.

Instance Attribute Summary collapse

Class Method Summary collapse

Methods included from DTO

#==, included, #initialize, #inspect, #to_hash, #to_json

Instance Attribute Details

#access_tokenObject

Returns the value of attribute access_token.



295
296
297
# File 'lib/servicestack/types.rb', line 295

def access_token
  @access_token
end

#metaObject

Returns the value of attribute meta.



295
296
297
# File 'lib/servicestack/types.rb', line 295

def meta
  @meta
end

#response_statusObject

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

.propertiesObject



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