Method: AuthorizeNet::XmlTransaction#has_response?

Defined in:
lib/authorize_net/xml_transaction.rb

#has_response?Boolean

Checks to see if the transaction has a response (meaning it has been submitted to the gateway). Returns TRUE if a response is present, FALSE otherwise.

Returns:

  • (Boolean)


94
95
96
# File 'lib/authorize_net/xml_transaction.rb', line 94

def has_response?
  !@response.nil?
end