class Authlete::Model::Response::ClientRegistrationResponse
Attributes
action[RW]
client[RW]
responseContent[RW]
response_content[RW]
response_content=[RW]
Private Instance Methods
defaults()
click to toggle source
Calls superclass method
Authlete::Model::Result#defaults
# File lib/authlete/model/response/client-registration-response.rb, line 32 def defaults super.merge( action: nil, responseContent: nil, client: nil ) end
set_params(hash)
click to toggle source
Calls superclass method
Authlete::Model::Result#set_params
# File lib/authlete/model/response/client-registration-response.rb, line 40 def set_params(hash) super(hash) @action = hash[:action] @responseContent = hash[:responseContent] @client = hash[:client] end