eway_rapid 1.0.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 (76) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +25 -0
  3. data/.travis.yml +11 -0
  4. data/CHANGELOG.md +7 -0
  5. data/Gemfile +2 -0
  6. data/LICENSE.md +21 -0
  7. data/README.md +96 -0
  8. data/Rakefile +14 -0
  9. data/eway_rapid.gemspec +26 -0
  10. data/lib/eway_rapid.rb +78 -0
  11. data/lib/eway_rapid/constants.rb +126 -0
  12. data/lib/eway_rapid/entities/cancel_authorisation_request.rb +9 -0
  13. data/lib/eway_rapid/entities/cancel_authorisation_response.rb +34 -0
  14. data/lib/eway_rapid/entities/capture_payment_request.rb +11 -0
  15. data/lib/eway_rapid/entities/capture_payment_response.rb +34 -0
  16. data/lib/eway_rapid/entities/create_access_code_request.rb +35 -0
  17. data/lib/eway_rapid/entities/create_access_code_response.rb +128 -0
  18. data/lib/eway_rapid/entities/create_access_code_shared_request.rb +53 -0
  19. data/lib/eway_rapid/entities/create_access_code_shared_response.rb +40 -0
  20. data/lib/eway_rapid/entities/create_customer_response.rb +8 -0
  21. data/lib/eway_rapid/entities/direct_customer_search_request.rb +9 -0
  22. data/lib/eway_rapid/entities/direct_customer_search_response.rb +23 -0
  23. data/lib/eway_rapid/entities/direct_payment_request.rb +29 -0
  24. data/lib/eway_rapid/entities/direct_payment_response.rb +58 -0
  25. data/lib/eway_rapid/entities/direct_refund_request.rb +26 -0
  26. data/lib/eway_rapid/entities/direct_refund_response.rb +44 -0
  27. data/lib/eway_rapid/entities/transaction_search_response.rb +23 -0
  28. data/lib/eway_rapid/exceptions.rb +51 -0
  29. data/lib/eway_rapid/message/convert/customer_to_internal_customer.rb +70 -0
  30. data/lib/eway_rapid/message/convert/direct_payment_to_trans_status.rb +47 -0
  31. data/lib/eway_rapid/message/convert/direct_refund_to_trans_status.rb +33 -0
  32. data/lib/eway_rapid/message/convert/internal_customer_to_customer.rb +41 -0
  33. data/lib/eway_rapid/message/convert/internal_trans_to_trans.rb +62 -0
  34. data/lib/eway_rapid/message/convert/internal_transaction_to_address.rb +27 -0
  35. data/lib/eway_rapid/message/convert/internal_transaction_to_status.rb +55 -0
  36. data/lib/eway_rapid/message/convert/payment_to_payment_details.rb +25 -0
  37. data/lib/eway_rapid/message/convert/request/refund_to_direct_refund_req.rb +41 -0
  38. data/lib/eway_rapid/message/convert/request/transaction_to_capture_payment.rb +28 -0
  39. data/lib/eway_rapid/message/convert/request/transaction_to_create_access_code_request.rb +58 -0
  40. data/lib/eway_rapid/message/convert/request/transaction_to_create_access_code_shared_request.rb +54 -0
  41. data/lib/eway_rapid/message/convert/request/transaction_to_direct_payment.rb +45 -0
  42. data/lib/eway_rapid/message/convert/response/access_code_shared_to_create_cust.rb +23 -0
  43. data/lib/eway_rapid/message/convert/response/access_code_shared_to_create_trans.rb +28 -0
  44. data/lib/eway_rapid/message/convert/response/access_code_to_create_cust.rb +24 -0
  45. data/lib/eway_rapid/message/convert/response/access_code_to_create_trans.rb +27 -0
  46. data/lib/eway_rapid/message/convert/response/cancel_authorisation_to_refund.rb +37 -0
  47. data/lib/eway_rapid/message/convert/response/capture_payment_to_create_transaction.rb +43 -0
  48. data/lib/eway_rapid/message/convert/response/direct_customer_to_query_customer.rb +55 -0
  49. data/lib/eway_rapid/message/convert/response/direct_payment_to_create_cust.rb +23 -0
  50. data/lib/eway_rapid/message/convert/response/direct_payment_to_create_trans.rb +32 -0
  51. data/lib/eway_rapid/message/convert/response/direct_refund_to_refund_response.rb +28 -0
  52. data/lib/eway_rapid/message/convert/response/search_to_query_trans.rb +30 -0
  53. data/lib/eway_rapid/message/convert/shipping_details_to_address.rb +35 -0
  54. data/lib/eway_rapid/message/convert/transaction_shipping_address.rb +37 -0
  55. data/lib/eway_rapid/message/convert/transaction_to_arr_line_item.rb +14 -0
  56. data/lib/eway_rapid/message/convert/transaction_to_arr_option.rb +25 -0
  57. data/lib/eway_rapid/message/convert/transaction_to_payment.rb +29 -0
  58. data/lib/eway_rapid/message/convert/verification_to_verification_result.rb +33 -0
  59. data/lib/eway_rapid/message/process/customer_process.rb +255 -0
  60. data/lib/eway_rapid/message/process/refund_process.rb +76 -0
  61. data/lib/eway_rapid/message/process/rest_process.rb +87 -0
  62. data/lib/eway_rapid/message/process/transaction_process.rb +139 -0
  63. data/lib/eway_rapid/models/enums.rb +126 -0
  64. data/lib/eway_rapid/models/internal_models.rb +431 -0
  65. data/lib/eway_rapid/models/models.rb +334 -0
  66. data/lib/eway_rapid/output/create_transaction_response.rb +24 -0
  67. data/lib/eway_rapid/output/query_customer_response.rb +25 -0
  68. data/lib/eway_rapid/output/query_transaction_response.rb +16 -0
  69. data/lib/eway_rapid/output/refund_response.rb +9 -0
  70. data/lib/eway_rapid/output/response_output.rb +14 -0
  71. data/lib/eway_rapid/rapid_client.rb +444 -0
  72. data/lib/eway_rapid/rapid_logger.rb +40 -0
  73. data/lib/eway_rapid/resources/err_code_resource_en.yml +237 -0
  74. data/lib/eway_rapid/resources/rapid-api.yml +4 -0
  75. data/lib/eway_rapid/version.rb +3 -0
  76. metadata +201 -0
@@ -0,0 +1,40 @@
1
+ module EwayRapid
2
+ class RapidLogger
3
+
4
+ # Creates a new Logger instance for logging
5
+ #
6
+ # @param [String] log_dev a filename (String) or IO object like +STDOUT+, +STDERR+
7
+ def self.init(log_dev)
8
+ @logger = Logger.new(log_dev)
9
+ @logger
10
+ end
11
+
12
+ # @return [Logger]
13
+ def self.logger
14
+ conf_log || @logger
15
+ end
16
+
17
+ # Check for a logging configuration in rapid_log_config.yml
18
+ def self.conf_log
19
+ prop_name = 'logdev'
20
+ property_array = YAML.load_file(File.join(File.dirname(__FILE__), '..', '..', 'rapid_log_config.yml'))
21
+ property_array.each do |h|
22
+ if prop_name.casecmp(h.keys.first).zero?
23
+ log_dev = h[h.keys.first]
24
+ if !log_dev.nil? && log_dev != ''
25
+ if log_dev.casecmp('stdout').zero?
26
+ return Logger.new(STDOUT)
27
+ elsif log_dev.casecmp('stderr').zero?
28
+ return Logger.new(STDERR)
29
+ else
30
+ return Logger.new(log_dev)
31
+ end
32
+ end
33
+ end
34
+ end
35
+ nil
36
+ rescue
37
+ nil
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,237 @@
1
+ ---
2
+ # Server error code
3
+ - V6000: Validation error
4
+ - V6001: Invalid CustomerIP
5
+ - V6002: Invalid DeviceID
6
+ - V6003: Invalid Request PartnerID
7
+ - V6004: Invalid Request Method
8
+ - V6010: Invalid TransactionType, account not certified for eCome only MOTO or Recurring available
9
+ - V6011: Invalid Payment TotalAmount
10
+ - V6012: Invalid Payment InvoiceDescription
11
+ - V6013: Invalid Payment InvoiceNumber
12
+ - V6014: Invalid Payment InvoiceReference
13
+ - V6015: Invalid Payment CurrencyCode
14
+ - V6016: Payment Required
15
+ - V6017: Payment CurrencyCode Required
16
+ - V6018: Unknown Payment CurrencyCode
17
+ - V6021: EWAY_CARDHOLDERNAME Required
18
+ - V6022: EWAY_CARDNUMBER Required
19
+ - V6023: EWAY_CARDCVN Required
20
+ - V6033: Invalid Expiry Date
21
+ - V6034: Invalid Issue Number
22
+ - V6035: Invalid Valid From Date
23
+ - V6040: Invalid TokenCustomerID
24
+ - V6041: Customer Required
25
+ - V6042: Customer FirstName Required
26
+ - V6043: Customer LastName Required
27
+ - V6044: Customer CountryCode Required
28
+ - V6045: Customer Title Required
29
+ - V6046: TokenCustomerID Required
30
+ - V6047: RedirectURL Required
31
+ - V6048: CheckoutURL Required when CheckoutPayment specified
32
+ - V6049: Invalid Checkout URL
33
+ - V6051: Invalid Customer FirstName
34
+ - V6052: Invalid Customer LastName
35
+ - V6053: Invalid Customer CountryCode
36
+ - V6058: Invalid Customer Title
37
+ - V6059: Invalid RedirectURL
38
+ - V6060: Invalid TokenCustomerID
39
+ - V6061: Invalid Customer Reference
40
+ - V6062: Invalid Customer CompanyName
41
+ - V6063: Invalid Customer JobDescription
42
+ - V6064: Invalid Customer Street1
43
+ - V6065: Invalid Customer Street2
44
+ - V6066: Invalid Customer City
45
+ - V6067: Invalid Customer State
46
+ - V6068: Invalid Customer PostalCode
47
+ - V6069: Invalid Customer Email
48
+ - V6070: Invalid Customer Phone
49
+ - V6071: Invalid Customer Mobile
50
+ - V6072: Invalid Customer Comments
51
+ - V6073: Invalid Customer Fax
52
+ - V6074: Invalid Customer URL
53
+ - V6075: Invalid ShippingAddress FirstName
54
+ - V6076: Invalid ShippingAddress LastName
55
+ - V6077: Invalid ShippingAddress Street1
56
+ - V6078: Invalid ShippingAddress Street2
57
+ - V6079: Invalid ShippingAddress City
58
+ - V6080: Invalid ShippingAddress State
59
+ - V6081: Invalid ShippingAddress PostalCode
60
+ - V6082: Invalid ShippingAddress Email
61
+ - V6083: Invalid ShippingAddress Phone
62
+ - V6084: Invalid ShippingAddress Country
63
+ - V6085: Invalid ShippingAddress ShippingMethod
64
+ - V6086: Invalid ShippingAddress Fax
65
+ - V6091: Unknown Customer CountryCode
66
+ - V6092: Unknown ShippingAddress CountryCode
67
+ - V6100: Invalid EWAY_CARDNAME
68
+ - V6101: Invalid EWAY_CARDEXPIRYMONTH
69
+ - V6102: Invalid EWAY_CARDEXPIRYYEAR
70
+ - V6103: Invalid EWAY_CARDSTARTMONTH
71
+ - V6104: Invalid EWAY_CARDSTARTYEAR
72
+ - V6105: Invalid EWAY_CARDISSUENUMBER
73
+ - V6106: Invalid EWAY_CARDCVN
74
+ - V6107: Invalid EWAY_ACCESSCODE
75
+ - V6108: Invalid CustomerHostAddress
76
+ - V6109: Invalid UserAgent
77
+ - V6110: Invalid EWAY_CARDNUMBER
78
+ - V6111: Unauthorised API Access, Account Not PCI Certified
79
+ - V6112: Redundant card details other than expiry year and month
80
+ - V6113: Invalid transaction for refund
81
+ - V6114: Gateway validation error
82
+ - V6115: Invalid DirectRefundRequest, Transaction ID
83
+ - V6116: Invalid card data on original TransactionID
84
+ - V6117: Invalid CreateAccessCodeSharedRequest, FooterText
85
+ - V6118: Invalid CreateAccessCodeSharedRequest, HeaderText
86
+ - V6119: Invalid CreateAccessCodeSharedRequest, Language
87
+ - V6120: Invalid CreateAccessCodeSharedRequest, LogoUrl
88
+ - V6121: Invalid TransactionSearch, Filter Match Type
89
+ - V6122: Invalid TransactionSearch, Non numeric Transaction ID
90
+ - V6123: Invalid TransactionSearch,no TransactionID or AccessCode specified
91
+ - V6124: Invalid Line,the line items have been provided however totals do not match TotalAmount field
92
+ - V6125: Selected Payment Type not enabled
93
+ - V6126: Invalid encrypted card number, decryption failed
94
+ - V6127: Invalid encrypted cvn, decryption failed
95
+ - V6128: Invalid Method for Payment Type
96
+ - V6129: Transaction has not been authorised for Capture/Cancellation
97
+ - V6130: Generic customer information error
98
+ - V6131: Generic shipping information error
99
+ - V6132: Transaction has already been completed or voided, operation not permitted
100
+ - V6133: Checkout not available for Payment Type
101
+ - V6134: Invalid Auth Transaction ID for Capture/Void
102
+ - V6135: PayPal Error Processing Refund
103
+ - V6140: Merchant account is suspended
104
+ - V6141: Invalid PayPal account details or API signature
105
+ - V6142: Authorise not available for Bank/Branch
106
+ - V6150: Invalid Refund Amount
107
+ - V6151: Refund amount greater than original transaction
108
+ - V6152: Original transaction already refunded for total amount
109
+ - V6153: Card type not support by merchant
110
+ - V6160: Encryption Method Not Supported
111
+ - V6165: Invalid Visa Checkout data or decryption failed
112
+ # Third party error code
113
+ - S5000: System Error
114
+ - S5011: PayPal Connection Error
115
+ - S5012: PayPal Settings Error
116
+ - S5085: Started 3dSecure
117
+ - S5086: Routed 3dSecure
118
+ - S5087: Completed 3dSecure
119
+ - S5088: PayPal Transaction Created
120
+ - S5099: Incomplete (Access Code in progress/incomplete)
121
+ - S5010: Unknown error returned by gateway
122
+ # internal error code
123
+ - S9990: Library does not have Endpoint initialised, or not initialise to a URL
124
+ - S9991: Library does not have PublicAPI key initialised, or Key is Invalid
125
+ - S9992: Communication error with Rapid API
126
+ - S9993: Authentication error with Rapid API
127
+ - S9994: Internal system error communicating with Rapid API
128
+ - S9995: Internal SDK Error, Bad Parameters ...
129
+ - S9996: Internal rapid server error (This error fire when post, get message from client to server has problem)
130
+ # Transaction response message
131
+ - A2000: Transaction Approved
132
+ - A2008: Honour With Identification
133
+ - A2010: Approved For Partial Amount
134
+ - A2011: Approved, VIP
135
+ - A2016: Approved, Update Track 3
136
+ - D4401: Refer to Issuer
137
+ - D4402: Refer to Issuer, special
138
+ - D4403: No Merchant
139
+ - D4404: Pick Up Card
140
+ - D4405: Do Not Honour
141
+ - D4406: Error
142
+ - D4407: Pick Up Card, Special
143
+ - D4409: Request In Progress
144
+ - D4412: Invalid Transaction
145
+ - D4413: Invalid Amount
146
+ - D4414: Invalid Card Number
147
+ - D4415: No Issuer
148
+ - D4419: Re-enter Last Transaction
149
+ - D4421: No Action Taken
150
+ - D4422: Suspected Malfunction
151
+ - D4423: Unacceptable Transaction Fee
152
+ - D4425: Unable to Locate Record On File
153
+ - D4430: Format Error
154
+ - D4431: Bank Not Supported By Switch
155
+ - D4433: Expired Card, Capture
156
+ - D4434: Suspected Fraud, Retain Card
157
+ - D4435: Card Acceptor, Contact Acquirer, Retain Card
158
+ - D4436: Restricted Card, Retain Card
159
+ - D4437: Contact Acquirer Security Department, Retain Card
160
+ - D4438: PIN Tries Exceeded, Capture
161
+ - D4439: No Credit Account
162
+ - D4440: Function Not Supported
163
+ - D4441: Lost Card
164
+ - D4442: No Universal Account
165
+ - D4443: Stolen Card
166
+ - D4444: No Investment Account
167
+ - D4450: Visa Checkout Transaction Error
168
+ - D4451: Insufficient Funds
169
+ - D4452: No Cheque Account
170
+ - D4453: No Savings Account
171
+ - D4454: Expired Card
172
+ - D4455: Incorrect PIN
173
+ - D4456: No Card Record
174
+ - D4457: Function Not Permitted to Cardholder
175
+ - D4458: Function Not Permitted to Terminal
176
+ - D4459: Suspected Fraud
177
+ - D4460: Acceptor Contact Acquirer
178
+ - D4461: Exceeds Withdrawal Limit
179
+ - D4462: Restricted Card
180
+ - D4463: Security Violation
181
+ - D4464: Original Amount Incorrect
182
+ - D4466: Acceptor Contact Acquirer, Security
183
+ - D4467: Capture Card
184
+ - D4475: PIN Tries Exceeded
185
+ - D4482: CVV Validation Error
186
+ - D4490: Cut off In Progress
187
+ - D4491: Card Issuer Unavailable
188
+ - D4492: Unable To Route Transaction
189
+ - D4493: Cannot Complete, Violation Of Law
190
+ - D4494: Duplicate Transaction
191
+ - D4495: Amex Declined
192
+ - D4496: System Error
193
+ - D4497: MasterPass Error
194
+ - D4498: PayPal Create Transaction Error
195
+ - D4499: Invalid Transaction for Auth/Void
196
+ - D4450: Visa Checkout Transaction Error
197
+ # Beagle Fraud Alerts and Beagle Fraud Alerts (Enterprise) Fraud Response Messages
198
+ - F7000: Undefined Fraud Error
199
+ - F7001: Challenged Fraud
200
+ - F7002: Country Match Fraud
201
+ - F7003: High Risk Country Fraud
202
+ - F7004: Anonymous Proxy Fraud
203
+ - F7005: Transparent Proxy Fraud
204
+ - F7006: Free Email Fraud
205
+ - F7007: International Transaction Fraud
206
+ - F7008: Risk Score Fraud
207
+ - F7009: Denied Fraud
208
+ - F7010: Denied by PayPal Fraud Rules
209
+ - F9001: Custom Fraud Rule
210
+ - F9010: High Risk Billing Country
211
+ - F9011: High Risk Credit Card Country
212
+ - F9012: High Risk Customer IP Address
213
+ - F9013: High Risk Email Address
214
+ - F9014: High Risk Shipping Country
215
+ - F9015: Multiple card numbers for single email address
216
+ - F9016: Multiple card numbers for single location
217
+ - F9017: Multiple email addresses for single card number
218
+ - F9018: Multiple email addresses for single location
219
+ - F9019: Multiple locations for single card number
220
+ - F9020: Multiple locations for single email address
221
+ - F9021: Suspicious Customer First Name
222
+ - F9022: Suspicious Customer Last Name
223
+ - F9023: Transaction Declined
224
+ - F9024: Multiple transactions for same address with known credit card
225
+ - F9025: Multiple transactions for same address with new credit card
226
+ - F9026: Multiple transactions for same email with new credit card
227
+ - F9027: Multiple transactions for same email with known credit card
228
+ - F9028: Multiple transactions for new credit card
229
+ - F9029: Multiple transactions for known credit card
230
+ - F9030: Multiple transactions for same email address
231
+ - F9031: Multiple transactions for same credit card
232
+ - F9032: Invalid Customer Last Name
233
+ - F9033: Invalid Billing Street
234
+ - F9034: Invalid Shipping Street
235
+ - F9037: Suspicious Customer Email Address
236
+ - F9050: High Risk Email Address and amount
237
+ - F9113: Card issuing country differs from IP address country
@@ -0,0 +1,4 @@
1
+ ---
2
+ - global.rapid.rest.production.url: https://api.ewaypayments.com/
3
+ - global.rapid.rest.sandbox.url: https://api.sandbox.ewaypayments.com/
4
+ - rapid.sdk.user.agent: eWAY SDK Ruby
@@ -0,0 +1,3 @@
1
+ module EwayRapid
2
+ VERSION = '1.0.0'
3
+ end
metadata ADDED
@@ -0,0 +1,201 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: eway_rapid
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - eWAY
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-12-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rest-client
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: json
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 1.8.3
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 1.8.3
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.10'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.10'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: test-unit
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Easy online payments with eWAY and the eWAY Rapid Ruby gem.
98
+ email:
99
+ executables: []
100
+ extensions: []
101
+ extra_rdoc_files: []
102
+ files:
103
+ - ".gitignore"
104
+ - ".travis.yml"
105
+ - CHANGELOG.md
106
+ - Gemfile
107
+ - LICENSE.md
108
+ - README.md
109
+ - Rakefile
110
+ - eway_rapid.gemspec
111
+ - lib/eway_rapid.rb
112
+ - lib/eway_rapid/constants.rb
113
+ - lib/eway_rapid/entities/cancel_authorisation_request.rb
114
+ - lib/eway_rapid/entities/cancel_authorisation_response.rb
115
+ - lib/eway_rapid/entities/capture_payment_request.rb
116
+ - lib/eway_rapid/entities/capture_payment_response.rb
117
+ - lib/eway_rapid/entities/create_access_code_request.rb
118
+ - lib/eway_rapid/entities/create_access_code_response.rb
119
+ - lib/eway_rapid/entities/create_access_code_shared_request.rb
120
+ - lib/eway_rapid/entities/create_access_code_shared_response.rb
121
+ - lib/eway_rapid/entities/create_customer_response.rb
122
+ - lib/eway_rapid/entities/direct_customer_search_request.rb
123
+ - lib/eway_rapid/entities/direct_customer_search_response.rb
124
+ - lib/eway_rapid/entities/direct_payment_request.rb
125
+ - lib/eway_rapid/entities/direct_payment_response.rb
126
+ - lib/eway_rapid/entities/direct_refund_request.rb
127
+ - lib/eway_rapid/entities/direct_refund_response.rb
128
+ - lib/eway_rapid/entities/transaction_search_response.rb
129
+ - lib/eway_rapid/exceptions.rb
130
+ - lib/eway_rapid/message/convert/customer_to_internal_customer.rb
131
+ - lib/eway_rapid/message/convert/direct_payment_to_trans_status.rb
132
+ - lib/eway_rapid/message/convert/direct_refund_to_trans_status.rb
133
+ - lib/eway_rapid/message/convert/internal_customer_to_customer.rb
134
+ - lib/eway_rapid/message/convert/internal_trans_to_trans.rb
135
+ - lib/eway_rapid/message/convert/internal_transaction_to_address.rb
136
+ - lib/eway_rapid/message/convert/internal_transaction_to_status.rb
137
+ - lib/eway_rapid/message/convert/payment_to_payment_details.rb
138
+ - lib/eway_rapid/message/convert/request/refund_to_direct_refund_req.rb
139
+ - lib/eway_rapid/message/convert/request/transaction_to_capture_payment.rb
140
+ - lib/eway_rapid/message/convert/request/transaction_to_create_access_code_request.rb
141
+ - lib/eway_rapid/message/convert/request/transaction_to_create_access_code_shared_request.rb
142
+ - lib/eway_rapid/message/convert/request/transaction_to_direct_payment.rb
143
+ - lib/eway_rapid/message/convert/response/access_code_shared_to_create_cust.rb
144
+ - lib/eway_rapid/message/convert/response/access_code_shared_to_create_trans.rb
145
+ - lib/eway_rapid/message/convert/response/access_code_to_create_cust.rb
146
+ - lib/eway_rapid/message/convert/response/access_code_to_create_trans.rb
147
+ - lib/eway_rapid/message/convert/response/cancel_authorisation_to_refund.rb
148
+ - lib/eway_rapid/message/convert/response/capture_payment_to_create_transaction.rb
149
+ - lib/eway_rapid/message/convert/response/direct_customer_to_query_customer.rb
150
+ - lib/eway_rapid/message/convert/response/direct_payment_to_create_cust.rb
151
+ - lib/eway_rapid/message/convert/response/direct_payment_to_create_trans.rb
152
+ - lib/eway_rapid/message/convert/response/direct_refund_to_refund_response.rb
153
+ - lib/eway_rapid/message/convert/response/search_to_query_trans.rb
154
+ - lib/eway_rapid/message/convert/shipping_details_to_address.rb
155
+ - lib/eway_rapid/message/convert/transaction_shipping_address.rb
156
+ - lib/eway_rapid/message/convert/transaction_to_arr_line_item.rb
157
+ - lib/eway_rapid/message/convert/transaction_to_arr_option.rb
158
+ - lib/eway_rapid/message/convert/transaction_to_payment.rb
159
+ - lib/eway_rapid/message/convert/verification_to_verification_result.rb
160
+ - lib/eway_rapid/message/process/customer_process.rb
161
+ - lib/eway_rapid/message/process/refund_process.rb
162
+ - lib/eway_rapid/message/process/rest_process.rb
163
+ - lib/eway_rapid/message/process/transaction_process.rb
164
+ - lib/eway_rapid/models/enums.rb
165
+ - lib/eway_rapid/models/internal_models.rb
166
+ - lib/eway_rapid/models/models.rb
167
+ - lib/eway_rapid/output/create_transaction_response.rb
168
+ - lib/eway_rapid/output/query_customer_response.rb
169
+ - lib/eway_rapid/output/query_transaction_response.rb
170
+ - lib/eway_rapid/output/refund_response.rb
171
+ - lib/eway_rapid/output/response_output.rb
172
+ - lib/eway_rapid/rapid_client.rb
173
+ - lib/eway_rapid/rapid_logger.rb
174
+ - lib/eway_rapid/resources/err_code_resource_en.yml
175
+ - lib/eway_rapid/resources/rapid-api.yml
176
+ - lib/eway_rapid/version.rb
177
+ homepage: https://www.eway.com.au
178
+ licenses:
179
+ - MIT
180
+ metadata: {}
181
+ post_install_message:
182
+ rdoc_options: []
183
+ require_paths:
184
+ - lib
185
+ required_ruby_version: !ruby/object:Gem::Requirement
186
+ requirements:
187
+ - - ">="
188
+ - !ruby/object:Gem::Version
189
+ version: 1.9.3
190
+ required_rubygems_version: !ruby/object:Gem::Requirement
191
+ requirements:
192
+ - - ">="
193
+ - !ruby/object:Gem::Version
194
+ version: '0'
195
+ requirements: []
196
+ rubyforge_project:
197
+ rubygems_version: 2.4.5.1
198
+ signing_key:
199
+ specification_version: 4
200
+ summary: Ruby gem for eWAY's Rapid API
201
+ test_files: []