hps 2.2.5 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile +4 -4
  3. data/Gemfile.lock +59 -0
  4. data/LICENSE.md +264 -0
  5. data/PRIVACY.txt +65 -65
  6. data/README.md +213 -216
  7. data/Rakefile +15 -15
  8. data/examples/sinatra-verify-only/Gemfile +4 -4
  9. data/examples/sinatra-verify-only/app.rb +32 -32
  10. data/examples/sinatra-verify-only/views/index.erb +478 -478
  11. data/examples/sinatra-verify-only/views/result.erb +39 -39
  12. data/hps.gemspec +28 -28
  13. data/lib/hps/configuration.rb +17 -17
  14. data/lib/hps/entities/hps_account_verify.rb +8 -8
  15. data/lib/hps/entities/hps_address.rb +6 -6
  16. data/lib/hps/entities/hps_authorization.rb +12 -12
  17. data/lib/hps/entities/hps_batch.rb +6 -6
  18. data/lib/hps/entities/hps_cardholder.rb +6 -6
  19. data/lib/hps/entities/hps_charge.rb +8 -8
  20. data/lib/hps/entities/hps_charge_exceptions.rb +6 -6
  21. data/lib/hps/entities/hps_check.rb +18 -18
  22. data/lib/hps/entities/hps_check_holder.rb +10 -10
  23. data/lib/hps/entities/hps_check_response.rb +45 -45
  24. data/lib/hps/entities/hps_check_response_details.rb +9 -9
  25. data/lib/hps/entities/hps_credit_card.rb +34 -34
  26. data/lib/hps/entities/hps_direct_market_data.rb +5 -5
  27. data/lib/hps/entities/hps_encryption_data.rb +6 -6
  28. data/lib/hps/entities/hps_gift_card.rb +133 -0
  29. data/lib/hps/entities/hps_manage_tokens.rb +8 -8
  30. data/lib/hps/entities/hps_refund.rb +8 -8
  31. data/lib/hps/entities/hps_report_transaction_details.rb +10 -10
  32. data/lib/hps/entities/hps_report_transaction_summary.rb +6 -6
  33. data/lib/hps/entities/hps_reversal.rb +10 -10
  34. data/lib/hps/entities/hps_token_data.rb +10 -10
  35. data/lib/hps/entities/hps_track_data.rb +5 -5
  36. data/lib/hps/entities/hps_transaction.rb +161 -161
  37. data/lib/hps/entities/hps_transaction_details.rb +6 -6
  38. data/lib/hps/entities/hps_transaction_header.rb +8 -8
  39. data/lib/hps/entities/hps_transaction_type.rb +16 -16
  40. data/lib/hps/entities/hps_void.rb +8 -8
  41. data/lib/hps/infrastructure/api_connection_exception.rb +11 -11
  42. data/lib/hps/infrastructure/authentication_exception.rb +11 -11
  43. data/lib/hps/infrastructure/card_exception.rb +15 -15
  44. data/lib/hps/infrastructure/exceptions.json +547 -468
  45. data/lib/hps/infrastructure/hps_account_type.rb +11 -11
  46. data/lib/hps/infrastructure/hps_check_exception.rb +13 -13
  47. data/lib/hps/infrastructure/hps_check_type.rb +11 -11
  48. data/lib/hps/infrastructure/hps_data_entry_mode.rb +11 -11
  49. data/lib/hps/infrastructure/hps_exception.rb +25 -25
  50. data/lib/hps/infrastructure/hps_exception_mapper.rb +145 -134
  51. data/lib/hps/infrastructure/hps_gateway_response_validation.rb +20 -20
  52. data/lib/hps/infrastructure/hps_input_validation.rb +13 -13
  53. data/lib/hps/infrastructure/hps_sdk_codes.rb +48 -48
  54. data/lib/hps/infrastructure/hps_sec_code.rb +27 -27
  55. data/lib/hps/infrastructure/hps_track_data_method.rb +6 -6
  56. data/lib/hps/infrastructure/invalid_request_exception.rb +15 -15
  57. data/lib/hps/services/hps_batch_service.rb +29 -29
  58. data/lib/hps/services/hps_charge_service.rb +773 -773
  59. data/lib/hps/services/hps_check_service.rb +110 -110
  60. data/lib/hps/services/hps_gift_card_service.rb +301 -0
  61. data/lib/hps/services/hps_service.rb +141 -136
  62. data/lib/hps/version.rb +3 -3
  63. data/lib/hps.rb +63 -61
  64. data/tests/amex_tests.rb +292 -292
  65. data/tests/cert_tests.rb +80 -80
  66. data/tests/certification/card_present_spec.rb +320 -320
  67. data/tests/certification/gift_card_certification_test.rb +107 -0
  68. data/tests/certification/gift_card_certification_tests.rb +107 -0
  69. data/tests/check_tests.rb +50 -50
  70. data/tests/discover_tests.rb +386 -386
  71. data/tests/exception_mapper_tests.rb +311 -244
  72. data/tests/general_tests.rb +140 -140
  73. data/tests/giftcard_tests.rb +212 -0
  74. data/tests/hps_token_service.rb +56 -56
  75. data/tests/mastercard_tests.rb +387 -387
  76. data/tests/secret_key.rb +11 -11
  77. data/tests/test_check.rb +77 -77
  78. data/tests/test_data.rb +138 -128
  79. data/tests/test_helper.rb +179 -116
  80. data/tests/token_tests.rb +512 -512
  81. data/tests/visa_tests.rb +445 -445
  82. metadata +40 -15
  83. data/LICENSE.txt +0 -32
@@ -0,0 +1,133 @@
1
+ module Hps
2
+ # ===============
3
+ # = HpsGiftCard =
4
+ # ===============
5
+ class HpsGiftCard
6
+ attr_accessor :number, :track_data, :alias, :token_value,
7
+ :encryption_data, :pin
8
+
9
+ def initialize(number = nil)
10
+ self.number = number
11
+ end
12
+ end # HpsGiftCard
13
+
14
+ # =======================
15
+ # = HpsGiftCardActivate =
16
+ # =======================
17
+ class HpsGiftCardActivate < HpsTransaction
18
+ # Values used in the card activate response
19
+ attr_accessor :authorization_code, :balance_amount, :points_balance_amount
20
+
21
+ # The rewards (dollars or points) added to the account as
22
+ # a result of the transaction
23
+ attr_accessor :rewards
24
+
25
+ # Notes contain reward messages to be displayed on a receipt,
26
+ # mobile app, or web page to inform an account holder about
27
+ # special rewards or promotions available on their account
28
+ attr_accessor :notes
29
+
30
+ def self.from_response(response, txn_type, return_type = nil)
31
+ activation_response = response['Transaction'][txn_type]
32
+
33
+ activation = return_type ? return_type.constantize.new : self.new
34
+
35
+ activation.transaction_id = response['Header']['GatewayTxnId']
36
+ activation.authorization_code = activation_response['AuthCode']
37
+ activation.balance_amount = activation_response['BalanceAmt']
38
+ activation.points_balance_amount = activation_response['PointsBalanceAmt']
39
+ activation.rewards = activation_response['Rewards']
40
+ activation.notes = activation_response['Notes']
41
+ activation.response_code = activation_response['RspCode']
42
+ activation.response_text = activation_response['RspText']
43
+
44
+ return activation
45
+ end # from_response
46
+ end # HpsGiftCardActivate
47
+
48
+ # =========================
49
+ # = HpsGiftCardDeactivate =
50
+ # =========================
51
+ class HpsGiftCardDeactivate < HpsGiftCardActivate
52
+
53
+ end # HpsGiftCardDeactivate
54
+
55
+ # ======================
56
+ # = HpsGiftCardReplace =
57
+ # ======================
58
+ class HpsGiftCardReplace < HpsGiftCardActivate
59
+
60
+ end # HpsGiftCardReplace
61
+
62
+ # =======================
63
+ # = HpsGiftCardReversal =
64
+ # =======================
65
+ class HpsGiftCardReversal < HpsGiftCardActivate
66
+
67
+ end # HpsGiftCardReversal
68
+
69
+ # =====================
70
+ # = HpsGiftCardReward =
71
+ # =====================
72
+ class HpsGiftCardReward < HpsGiftCardActivate
73
+
74
+ end # HpsGiftCardReward
75
+
76
+ # ======================
77
+ # = HpsGiftCardBalance =
78
+ # ======================
79
+ class HpsGiftCardBalance < HpsGiftCardActivate
80
+
81
+ end # HpsGiftCardBalance
82
+
83
+ # =======================
84
+ # = HpsGiftCardAddValue =
85
+ # =======================
86
+ class HpsGiftCardAddValue < HpsGiftCardActivate
87
+
88
+ end # HpsGiftCardAddValue
89
+
90
+ # ===================
91
+ # = HpsGiftCardVoid =
92
+ # ===================
93
+ class HpsGiftCardVoid < HpsGiftCardActivate
94
+
95
+ end # HpsGiftCardVoid
96
+
97
+ # ===================
98
+ # = HpsGiftCardSale =
99
+ # ===================
100
+ class HpsGiftCardSale < HpsGiftCardActivate
101
+ attr_accessor :split_tender_card_amount, :split_tender_balance_due
102
+
103
+ def self.from_response(response, txn_type)
104
+ transaction = response['Transaction']
105
+
106
+ sale = self.superclass.from_response(response, txn_type, self.name)
107
+
108
+ sale.split_tender_card_amount = transaction['SplitTenderCardAmt']
109
+ sale.split_tender_balance_due = transaction['SplitTenderBalanceDueAmt']
110
+
111
+ return sale
112
+ end # from_response
113
+ end # HpsGiftCardSale
114
+
115
+ # ====================
116
+ # = HpsGiftCardAlias =
117
+ # ====================
118
+ class HpsGiftCardAlias < HpsTransaction
119
+ attr_accessor :gift_card
120
+
121
+ def self.from_response(response, txn_type)
122
+ alias_response = response['Transaction'][txn_type]
123
+
124
+ alias_item = HpsGiftCardAlias.new
125
+ alias_item.transaction_id = response['Header']['GatewayTxnId']
126
+ alias_item.gift_card = HpsGiftCard.new(alias_response['CardData'])
127
+ alias_item.response_code = alias_response['RspCode']
128
+ alias_item.response_text = alias_response['RspText']
129
+
130
+ return alias_item
131
+ end # from_response
132
+ end # HpsGiftCardAlias
133
+ end # Hps
@@ -1,9 +1,9 @@
1
- module Hps
2
- class HpsManageTokens < HpsTransaction
3
-
4
- def initialize(header)
5
- super(header)
6
- end
7
-
8
- end
1
+ module Hps
2
+ class HpsManageTokens < HpsTransaction
3
+
4
+ def initialize(header)
5
+ super(header)
6
+ end
7
+
8
+ end
9
9
  end
@@ -1,9 +1,9 @@
1
- module Hps
2
- class HpsRefund < HpsTransaction
3
-
4
- def initialize(header)
5
- super(header)
6
- end
7
-
8
- end
1
+ module Hps
2
+ class HpsRefund < HpsTransaction
3
+
4
+ def initialize(header)
5
+ super(header)
6
+ end
7
+
8
+ end
9
9
  end
@@ -1,11 +1,11 @@
1
- module Hps
2
- class HpsReportTransactionDetails < HpsAuthorization
3
-
4
- attr_accessor :original_transaction_id, :masked_card_number, :transaction_type, :transaction_date, :exceptions
5
-
6
- def initialize(header)
7
- super(header)
8
- end
9
-
10
- end
1
+ module Hps
2
+ class HpsReportTransactionDetails < HpsAuthorization
3
+
4
+ attr_accessor :original_transaction_id, :masked_card_number, :transaction_type, :transaction_date, :exceptions
5
+
6
+ def initialize(header)
7
+ super(header)
8
+ end
9
+
10
+ end
11
11
  end
@@ -1,7 +1,7 @@
1
- module Hps
2
- class HpsReportTransactionSummary < HpsTransaction
3
-
4
- attr_accessor :amount, :original_transaction_id, :masked_card_number, :transaction_type, :transaction_date, :exceptions
5
-
6
- end
1
+ module Hps
2
+ class HpsReportTransactionSummary < HpsTransaction
3
+
4
+ attr_accessor :amount, :original_transaction_id, :masked_card_number, :transaction_type, :transaction_date, :exceptions
5
+
6
+ end
7
7
  end
@@ -1,11 +1,11 @@
1
- module Hps
2
- class HpsReversal < HpsTransaction
3
-
4
- attr_accessor :avs_result_code, :avs_result_text, :cvv_result_code, :cvv_result_text, :cpc_indicator
5
-
6
- def initialize(header)
7
- super(header)
8
- end
9
-
10
- end
1
+ module Hps
2
+ class HpsReversal < HpsTransaction
3
+
4
+ attr_accessor :avs_result_code, :avs_result_text, :cvv_result_code, :cvv_result_text, :cpc_indicator
5
+
6
+ def initialize(header)
7
+ super(header)
8
+ end
9
+
10
+ end
11
11
  end
@@ -1,11 +1,11 @@
1
- module Hps
2
- class HpsTokenData
3
-
4
- attr_accessor :token_value, :response_code, :response_message
5
-
6
- def initialize(response_message = nil)
7
- @response_message = response_message
8
- end
9
-
10
- end
1
+ module Hps
2
+ class HpsTokenData
3
+
4
+ attr_accessor :token_value, :response_code, :response_message
5
+
6
+ def initialize(response_message = nil)
7
+ @response_message = response_message
8
+ end
9
+
10
+ end
11
11
  end
@@ -1,5 +1,5 @@
1
- module Hps
2
- class Hps::HpsTrackData
3
- attr_accessor :value, :method_obtained
4
- end
5
- end
1
+ module Hps
2
+ class Hps::HpsTrackData
3
+ attr_accessor :value, :method_obtained
4
+ end
5
+ end
@@ -1,161 +1,161 @@
1
- module Hps
2
-
3
- class HpsTransaction
4
-
5
- attr_accessor :transaction_header, :transaction_id, :response_code, :response_text, :reference_number
6
-
7
- def initialize(transaction_header=nil)
8
- @transaction_header = transaction_header
9
- end
10
-
11
- end
12
-
13
- def self.transaction_type_to_service_name(transaction_type)
14
-
15
- case transaction_type
16
-
17
- when Hps::HpsTransactionType::AUTHORIZE
18
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAuth
19
-
20
- when Hps::HpsTransactionType::CAPTURE
21
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAddToBatch
22
-
23
- when Hps::HpsTransactionType::CHARGE
24
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditSale
25
-
26
- when Hps::HpsTransactionType::REFUND
27
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReturn
28
-
29
- when Hps::HpsTransactionType::REVERSE
30
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReversal
31
-
32
- when Hps::HpsTransactionType::VERIFY
33
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAccountVerify
34
-
35
- when Hps::HpsTransactionType::LIST
36
- Hps::ItemChoiceTypePosResponseVer10Transaction::ReportActivity
37
-
38
- when Hps::HpsTransactionType::GET
39
- Hps::ItemChoiceTypePosResponseVer10Transaction::ReportTxnDetail
40
-
41
- when Hps::HpsTransactionType::VOID
42
- Hps::ItemChoiceTypePosResponseVer10Transaction::CreditVoid
43
-
44
- when Hps::HpsTransactionType::BATCH_CLOSE
45
- Hps::ItemChoiceTypePosResponseVer10Transaction::BatchClose
46
-
47
- when Hps::HpsTransactionType::SECURITY_ERROR
48
- "SecurityError"
49
- else
50
- ""
51
- end
52
-
53
- end
54
-
55
- def self.service_name_to_transaction_type(service_name)
56
-
57
- if service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAuth
58
- Hps::HpsTransactionType::AUTHORIZE
59
-
60
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAddToBatch
61
- Hps::HpsTransactionType::CAPTURE
62
-
63
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditSale
64
- Hps::HpsTransactionType::CHARGE
65
-
66
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReturn
67
- Hps::HpsTransactionType::REFUND
68
-
69
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReversal
70
- Hps::HpsTransactionType::REVERSE
71
-
72
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAccountVerify
73
- Hps::HpsTransactionType::VERIFY
74
-
75
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::ReportActivity
76
- Hps::HpsTransactionType::LIST
77
-
78
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::ReportTxnDetail
79
- Hps::HpsTransactionType::GET
80
-
81
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditVoid
82
- Hps::HpsTransactionType::Void
83
-
84
- elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::BatchClose
85
- Hps::HpsTransactionType::BATCH_CLOSE
86
-
87
- elsif service_name == "SecurityError"
88
- Hps::HpsTransactionType::SECURITY_ERROR
89
- else
90
- nil
91
- end
92
-
93
- end
94
-
95
- module ItemChoiceTypePosResponseVer10Transaction
96
-
97
- AddAttachment = "AddAttachment"
98
- Authenticate = "Authenticate"
99
- BatchClose = "BatchClose"
100
- CancelImpersonation = "CancelImpersonation"
101
- CheckSale = "CheckSale"
102
- CheckVoid = "CheckVoid"
103
- CreditAccountVerify = "CreditAccountVerify"
104
- CreditAddToBatch = "CreditAddToBatch"
105
- CreditAuth = "CreditAuth"
106
- CreditCPCEdit = "CreditCPCEdit"
107
- CreditIncrementalAuth = "CreditIncrementalAuth"
108
- CreditOfflineAuth = "CreditOfflineAuth"
109
- CreditOfflineSale = "CreditOfflineSale"
110
- CreditReturn = "CreditReturn"
111
- CreditReversal = "CreditReversal"
112
- CreditSale = "CreditSale"
113
- CreditTxnEdit = "CreditTxnEdit"
114
- CreditVoid = "CreditVoid"
115
- DebitAddValue = "DebitAddValue"
116
- DebitReturn = "DebitReturn"
117
- DebitReversal = "DebitReversal"
118
- DebitSale = "DebitSale"
119
- EBTBalanceInquiry = "EBTBalanceInquiry"
120
- EBTCashBackPurchase = "EBTCashBackPurchase"
121
- EBTCashBenefitWithdrawal = "EBTCashBenefitWithdrawal"
122
- EBTFSPurchase = "EBTFSPurchase"
123
- EBTFSReturn = "EBTFSReturn"
124
- EBTVoucherPurchase = "EBTVoucherPurchase"
125
- EndToEndTest = "EndToEndTest"
126
- FindTransactions = "FindTransactions"
127
- GetAttachments = "GetAttachments"
128
- GetUserDeviceSettings = "GetUserDeviceSettings"
129
- GetUserSettings = "GetUserSettings"
130
- GiftCardActivate = "GiftCardActivate"
131
- GiftCardAddValue = "GiftCardAddValue"
132
- GiftCardBalance = "GiftCardBalance"
133
- GiftCardCurrentDayTotals = "GiftCardCurrentDayTotals"
134
- GiftCardDeactivate = "GiftCardDeactivate"
135
- GiftCardPreviousDayTotals = "GiftCardPreviousDayTotals"
136
- GiftCardReplace = "GiftCardReplace"
137
- GiftCardReversal = "GiftCardReversal"
138
- GiftCardSale = "GiftCardSale"
139
- GiftCardVoid = "GiftCardVoid"
140
- Impersonate = "Impersonate"
141
- InvalidateAuthentication = "InvalidateAuthentication"
142
- ManageSettings = "ManageSettings"
143
- ManageUsers = "ManageUsers"
144
- PrePaidAddValue = "PrePaidAddValue"
145
- PrePaidBalanceInquiry = "PrePaidBalanceInquiry"
146
- RecurringBilling = "RecurringBilling"
147
- ReportActivity = "ReportActivity"
148
- ReportBatchDetail = "ReportBatchDetail"
149
- ReportBatchHistory = "ReportBatchHistory"
150
- ReportBatchSummary = "ReportBatchSummary"
151
- ReportOpenAuths = "ReportOpenAuths"
152
- ReportSearch = "ReportSearch"
153
- ReportTxnDetail = "ReportTxnDetail"
154
- SendReceipt = "SendReceipt"
155
- TestCredentials = "TestCredentials"
156
-
157
- end
158
-
159
-
160
- end
161
-
1
+ module Hps
2
+
3
+ class HpsTransaction
4
+
5
+ attr_accessor :transaction_header, :transaction_id, :response_code, :response_text, :reference_number
6
+
7
+ def initialize(transaction_header=nil)
8
+ @transaction_header = transaction_header
9
+ end
10
+
11
+ end
12
+
13
+ def self.transaction_type_to_service_name(transaction_type)
14
+
15
+ case transaction_type
16
+
17
+ when Hps::HpsTransactionType::AUTHORIZE
18
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAuth
19
+
20
+ when Hps::HpsTransactionType::CAPTURE
21
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAddToBatch
22
+
23
+ when Hps::HpsTransactionType::CHARGE
24
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditSale
25
+
26
+ when Hps::HpsTransactionType::REFUND
27
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReturn
28
+
29
+ when Hps::HpsTransactionType::REVERSE
30
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReversal
31
+
32
+ when Hps::HpsTransactionType::VERIFY
33
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAccountVerify
34
+
35
+ when Hps::HpsTransactionType::LIST
36
+ Hps::ItemChoiceTypePosResponseVer10Transaction::ReportActivity
37
+
38
+ when Hps::HpsTransactionType::GET
39
+ Hps::ItemChoiceTypePosResponseVer10Transaction::ReportTxnDetail
40
+
41
+ when Hps::HpsTransactionType::VOID
42
+ Hps::ItemChoiceTypePosResponseVer10Transaction::CreditVoid
43
+
44
+ when Hps::HpsTransactionType::BATCH_CLOSE
45
+ Hps::ItemChoiceTypePosResponseVer10Transaction::BatchClose
46
+
47
+ when Hps::HpsTransactionType::SECURITY_ERROR
48
+ "SecurityError"
49
+ else
50
+ ""
51
+ end
52
+
53
+ end
54
+
55
+ def self.service_name_to_transaction_type(service_name)
56
+
57
+ if service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAuth
58
+ Hps::HpsTransactionType::AUTHORIZE
59
+
60
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAddToBatch
61
+ Hps::HpsTransactionType::CAPTURE
62
+
63
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditSale
64
+ Hps::HpsTransactionType::CHARGE
65
+
66
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReturn
67
+ Hps::HpsTransactionType::REFUND
68
+
69
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditReversal
70
+ Hps::HpsTransactionType::REVERSE
71
+
72
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditAccountVerify
73
+ Hps::HpsTransactionType::VERIFY
74
+
75
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::ReportActivity
76
+ Hps::HpsTransactionType::LIST
77
+
78
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::ReportTxnDetail
79
+ Hps::HpsTransactionType::GET
80
+
81
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::CreditVoid
82
+ Hps::HpsTransactionType::Void
83
+
84
+ elsif service_name == Hps::ItemChoiceTypePosResponseVer10Transaction::BatchClose
85
+ Hps::HpsTransactionType::BATCH_CLOSE
86
+
87
+ elsif service_name == "SecurityError"
88
+ Hps::HpsTransactionType::SECURITY_ERROR
89
+ else
90
+ nil
91
+ end
92
+
93
+ end
94
+
95
+ module ItemChoiceTypePosResponseVer10Transaction
96
+
97
+ AddAttachment = "AddAttachment"
98
+ Authenticate = "Authenticate"
99
+ BatchClose = "BatchClose"
100
+ CancelImpersonation = "CancelImpersonation"
101
+ CheckSale = "CheckSale"
102
+ CheckVoid = "CheckVoid"
103
+ CreditAccountVerify = "CreditAccountVerify"
104
+ CreditAddToBatch = "CreditAddToBatch"
105
+ CreditAuth = "CreditAuth"
106
+ CreditCPCEdit = "CreditCPCEdit"
107
+ CreditIncrementalAuth = "CreditIncrementalAuth"
108
+ CreditOfflineAuth = "CreditOfflineAuth"
109
+ CreditOfflineSale = "CreditOfflineSale"
110
+ CreditReturn = "CreditReturn"
111
+ CreditReversal = "CreditReversal"
112
+ CreditSale = "CreditSale"
113
+ CreditTxnEdit = "CreditTxnEdit"
114
+ CreditVoid = "CreditVoid"
115
+ DebitAddValue = "DebitAddValue"
116
+ DebitReturn = "DebitReturn"
117
+ DebitReversal = "DebitReversal"
118
+ DebitSale = "DebitSale"
119
+ EBTBalanceInquiry = "EBTBalanceInquiry"
120
+ EBTCashBackPurchase = "EBTCashBackPurchase"
121
+ EBTCashBenefitWithdrawal = "EBTCashBenefitWithdrawal"
122
+ EBTFSPurchase = "EBTFSPurchase"
123
+ EBTFSReturn = "EBTFSReturn"
124
+ EBTVoucherPurchase = "EBTVoucherPurchase"
125
+ EndToEndTest = "EndToEndTest"
126
+ FindTransactions = "FindTransactions"
127
+ GetAttachments = "GetAttachments"
128
+ GetUserDeviceSettings = "GetUserDeviceSettings"
129
+ GetUserSettings = "GetUserSettings"
130
+ GiftCardActivate = "GiftCardActivate"
131
+ GiftCardAddValue = "GiftCardAddValue"
132
+ GiftCardBalance = "GiftCardBalance"
133
+ GiftCardCurrentDayTotals = "GiftCardCurrentDayTotals"
134
+ GiftCardDeactivate = "GiftCardDeactivate"
135
+ GiftCardPreviousDayTotals = "GiftCardPreviousDayTotals"
136
+ GiftCardReplace = "GiftCardReplace"
137
+ GiftCardReversal = "GiftCardReversal"
138
+ GiftCardSale = "GiftCardSale"
139
+ GiftCardVoid = "GiftCardVoid"
140
+ Impersonate = "Impersonate"
141
+ InvalidateAuthentication = "InvalidateAuthentication"
142
+ ManageSettings = "ManageSettings"
143
+ ManageUsers = "ManageUsers"
144
+ PrePaidAddValue = "PrePaidAddValue"
145
+ PrePaidBalanceInquiry = "PrePaidBalanceInquiry"
146
+ RecurringBilling = "RecurringBilling"
147
+ ReportActivity = "ReportActivity"
148
+ ReportBatchDetail = "ReportBatchDetail"
149
+ ReportBatchHistory = "ReportBatchHistory"
150
+ ReportBatchSummary = "ReportBatchSummary"
151
+ ReportOpenAuths = "ReportOpenAuths"
152
+ ReportSearch = "ReportSearch"
153
+ ReportTxnDetail = "ReportTxnDetail"
154
+ SendReceipt = "SendReceipt"
155
+ TestCredentials = "TestCredentials"
156
+
157
+ end
158
+
159
+
160
+ end
161
+
@@ -1,7 +1,7 @@
1
- module Hps
2
- class HpsTransactionDetails
3
-
4
- attr_accessor :memo, :invoice_number, :customer_id
5
-
6
- end
1
+ module Hps
2
+ class HpsTransactionDetails
3
+
4
+ attr_accessor :memo, :invoice_number, :customer_id
5
+
6
+ end
7
7
  end
@@ -1,9 +1,9 @@
1
- module Hps
2
- class HpsTransactionHeader
3
-
4
- attr_accessor :gateway_response_code, :gateway_response_message, :response_dt, :client_txn_id
5
-
6
-
7
-
8
- end
1
+ module Hps
2
+ class HpsTransactionHeader
3
+
4
+ attr_accessor :gateway_response_code, :gateway_response_message, :response_dt, :client_txn_id
5
+
6
+
7
+
8
+ end
9
9
  end
@@ -1,17 +1,17 @@
1
- module Hps
2
- module HpsTransactionType
3
-
4
- AUTHORIZE = 0
5
- CAPTURE = 1
6
- CHARGE = 2
7
- REFUND = 3
8
- REVERSE = 4
9
- VERIFY = 5
10
- LIST = 6
11
- GET = 7
12
- VOID = 8
13
- SECURITY_ERROR = 9
14
- BATCH_CLOSE = 10
15
-
16
- end
1
+ module Hps
2
+ module HpsTransactionType
3
+
4
+ AUTHORIZE = 0
5
+ CAPTURE = 1
6
+ CHARGE = 2
7
+ REFUND = 3
8
+ REVERSE = 4
9
+ VERIFY = 5
10
+ LIST = 6
11
+ GET = 7
12
+ VOID = 8
13
+ SECURITY_ERROR = 9
14
+ BATCH_CLOSE = 10
15
+
16
+ end
17
17
  end
@@ -1,9 +1,9 @@
1
- module Hps
2
- class HpsVoid < HpsTransaction
3
-
4
- def initialize(header)
5
- super(header)
6
- end
7
-
8
- end
1
+ module Hps
2
+ class HpsVoid < HpsTransaction
3
+
4
+ def initialize(header)
5
+ super(header)
6
+ end
7
+
8
+ end
9
9
  end