class Authlete::Model::Response::StandardIntrospectionResponse

Attributes

action[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/standard-introspection-response.rb, line 31
def defaults
  super.merge(
    action:          nil,
    responseContent: nil
  )
end
set_params(hash) click to toggle source
Calls superclass method Authlete::Model::Result#set_params
# File lib/authlete/model/response/standard-introspection-response.rb, line 38
def set_params(hash)
  super(hash)

  @action          = hash[:action]
  @responseContent = hash[:responseContent]
end