class Authlete::Model::Response::BackchannelAuthenticationIssueResponse

Attributes

action[RW]
authReqId[RW]
auth_req_id[RW]
auth_req_id=[RW]
expiresIn[RW]
expires_in[RW]
expires_in=[RW]
interval[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/backchannel-authentication-issue-response.rb, line 41
def defaults
  super.merge(
    action:          nil,
    responseContent: nil,
    authReqId:       nil,
    expiresIn:       0,
    interval:        0
  )
end
set_params(hash) click to toggle source
Calls superclass method Authlete::Model::Result#set_params
# File lib/authlete/model/response/backchannel-authentication-issue-response.rb, line 51
def set_params(hash)
  super(hash)

  @action          = hash[:action]
  @responseContent = hash[:responseContent]
  @authReqId       = hash[:authReqId]
  @expiresIn       = hash[:expiresIn]
  @interval        = hash[:interval]
end