class Authlete::Model::Response::ClientSecretUpdateResponse
Attributes
Private Instance Methods
Source
# File lib/authlete/model/response/client-secret-update-response.rb, line 32 def defaults super.merge( newClientSecret: nil, oldClientSecret: nil ) end
Calls superclass method
Authlete::Model::Result#defaults
Source
# File lib/authlete/model/response/client-secret-update-response.rb, line 39 def set_params(hash) super(hash) @newClientSecret = hash[:newClientSecret] @oldClientSecret = hash[:oldClientSecret] end
Calls superclass method
Authlete::Model::Result#set_params