class Authlete::Model::Request::ClientRegistrationRequest

Attributes

clientId[RW]
client_id[RW]
client_id=[RW]
json[RW]
token[RW]

Private Instance Methods

defaults() click to toggle source
# File lib/authlete/model/request/client-registration-request.rb, line 33
def defaults
  {
    json:      nil,
    token:     nil,
    clientId:  nil
  }
end
set_params(hash) click to toggle source
# File lib/authlete/model/request/client-registration-request.rb, line 41
def set_params(hash)
  @json     = hash[:json]
  @token    = hash[:token]
  @clientId = hash[:clientId]
end