class Authlete::Model::Response::ClientSecretUpdateResponse

Attributes

newClientSecret[RW]
new_client_secret[RW]
new_client_secret=[RW]
oldClientSecret[RW]
old_client_secret[RW]
old_client_secret=[RW]

Private Instance Methods

defaults() click to toggle source
Calls superclass method Authlete::Model::Result#defaults
# File lib/authlete/model/response/client-secret-update-response.rb, line 32
def defaults
  super.merge(
    newClientSecret: nil,
    oldClientSecret: nil
  )
end
set_params(hash) click to toggle source
Calls superclass method Authlete::Model::Result#set_params
# 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