class AuthorizeNet::Response

The core, API agnostic response class. You shouldn’t instantiate this one.

Public Class Methods

new() click to toggle source

DO NOT USE.

# File lib/authorize_net/response.rb, line 14
def initialize
  raise "#{self.class} should not be instantiated directly."
end

Public Instance Methods

success?() click to toggle source

Check to see if the response indicated success.

# File lib/authorize_net/response.rb, line 19
def success?
  false
end