class Doorkeeper::OAuth::ClientCredentialsRequest::Response

def attributes

def attributes
  {
    'access_token' => token,
    'token_type'   => token_type,
    'expires_in'   => expires_in,
    'scope'        => scopes_string
  }
end

def headers

def headers
  { 'Cache-Control' => 'no-store', 'Pragma' => 'no-cache' }
end

def initialize(token)

def initialize(token)
  @token = token
end

def status

def status
  :success
end

def token_type

def token_type
  'bearer'
end