class Affirm::FailureResult

Attributes

error[R]
response[R]

Public Class Methods

new(response) click to toggle source
# File lib/affirm/failure_result.rb, line 11
def initialize(response)
  @response = response
  @error    = Affirm::Responses::Error.new(response.body)
end