class GiactVerification::Response

Attributes

parsed_response[R]
raw_request[R]
raw_response[R]
success[R]

Public Class Methods

new(args) click to toggle source
# File lib/giact_verification/response.rb, line 5
def initialize(args)
  @raw_request     = args[:raw_request]
  @raw_response    = args[:raw_response]
  @parsed_response = args[:parsed_response]
  @success         = args[:success]
end

Public Instance Methods

success?() click to toggle source
# File lib/giact_verification/response.rb, line 12
def success?
  success
end