This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| From http://www.authorize.net/support/merchant/Transaction_Response/Response_Reason_Codes_and_Response_Reason_Text.htm | |
| """ | |
| REASONS = [ | |
| # resp code, reason code, reason text, notes | |
| [1, 1, "This transaction has been approved."], | |
| [2, 2, "This transaction has been declined."], | |
| [2, 3, "This transaction has been declined."], | |
| [2, 4, "This transaction has been declined.", "The code returned from the processor indicating that the card used needs to be picked up."], |