increase 1.259.0 → 1.261.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/increase/models/card_push_transfer.rb +57 -0
- data/lib/increase/models/card_validation.rb +57 -0
- data/lib/increase/models/simulations/card_token_create_params.rb +57 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_push_transfer.rbi +126 -0
- data/rbi/increase/models/card_validation.rbi +126 -0
- data/rbi/increase/models/simulations/card_token_create_params.rbi +126 -0
- data/sig/increase/models/card_push_transfer.rbs +72 -0
- data/sig/increase/models/card_validation.rbs +72 -0
- data/sig/increase/models/simulations/card_token_create_params.rbs +72 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83e0a8c25b91a2ea63800f4053162fc61c534726eb0600701bf397f65f3caa41
|
|
4
|
+
data.tar.gz: 10ff38ac4c47ede9df4eeb15abbadf7f2f37b837cd1144eb8e8decfa2138a0b7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b94fd236f4a79954de630d45993d6750343c4fdba4989d138d3e76db152b8ab85d77eb490fc7ac3c3653bfacf43f67193f967f76429de48c082b179e7c98765c
|
|
7
|
+
data.tar.gz: 4e13b398fd86a42806bf5492a5f69848520d8421258cc09b68cc95b9b2e7fbbd8d6c3272c174a9f6555f795d014882b30f1ffed2223da2ee513f092a52b3354a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.261.0 (2026-03-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.260.0...v1.261.0](https://github.com/Increase/increase-ruby/compare/v1.260.0...v1.261.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([f340950](https://github.com/Increase/increase-ruby/commit/f34095058142fc4db5d34c07f75fbe62db75f080))
|
|
10
|
+
|
|
11
|
+
## 1.260.0 (2026-03-18)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.259.0...v1.260.0](https://github.com/Increase/increase-ruby/compare/v1.259.0...v1.260.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([5a597e5](https://github.com/Increase/increase-ruby/commit/5a597e5c24be4b9fca143653200cafcd2382c0cb))
|
|
18
|
+
|
|
3
19
|
## 1.259.0 (2026-03-18)
|
|
4
20
|
|
|
5
21
|
Full Changelog: [v1.258.0...v1.259.0](https://github.com/Increase/increase-ruby/compare/v1.258.0...v1.259.0)
|
data/README.md
CHANGED
|
@@ -717,6 +717,63 @@ module Increase
|
|
|
717
717
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
718
718
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER = :revocation_of_all_authorizations_order
|
|
719
719
|
|
|
720
|
+
# The record associated with the transaction could not be located.
|
|
721
|
+
UNABLE_TO_LOCATE_RECORD = :unable_to_locate_record
|
|
722
|
+
|
|
723
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
724
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE = :file_is_temporarily_unavailable
|
|
725
|
+
|
|
726
|
+
# The PIN entered for the transaction is incorrect.
|
|
727
|
+
INCORRECT_PIN = :incorrect_pin
|
|
728
|
+
|
|
729
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
730
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED = :allowable_number_of_pin_entry_tries_exceeded
|
|
731
|
+
|
|
732
|
+
# The previous message associated with the transaction could not be located.
|
|
733
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE = :unable_to_locate_previous_message
|
|
734
|
+
|
|
735
|
+
# An error was found with the PIN associated with the transaction.
|
|
736
|
+
PIN_ERROR_FOUND = :pin_error_found
|
|
737
|
+
|
|
738
|
+
# The PIN associated with the transaction could not be verified.
|
|
739
|
+
CANNOT_VERIFY_PIN = :cannot_verify_pin
|
|
740
|
+
|
|
741
|
+
# The verification data associated with the transaction has failed.
|
|
742
|
+
VERIFICATION_DATA_FAILED = :verification_data_failed
|
|
743
|
+
|
|
744
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
745
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
746
|
+
:surcharge_amount_not_supported_by_debit_network_issuer
|
|
747
|
+
|
|
748
|
+
# Cash service is not available for this transaction.
|
|
749
|
+
CASH_SERVICE_NOT_AVAILABLE = :cash_service_not_available
|
|
750
|
+
|
|
751
|
+
# The cashback request exceeds the issuer limit.
|
|
752
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT = :cashback_request_exceeds_issuer_limit
|
|
753
|
+
|
|
754
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
755
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
756
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount
|
|
757
|
+
|
|
758
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
759
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN = :transaction_does_not_qualify_for_visa_pin
|
|
760
|
+
|
|
761
|
+
# The transaction was declined offline.
|
|
762
|
+
OFFLINE_DECLINED = :offline_declined
|
|
763
|
+
|
|
764
|
+
# The terminal was unable to go online to process the transaction.
|
|
765
|
+
UNABLE_TO_GO_ONLINE = :unable_to_go_online
|
|
766
|
+
|
|
767
|
+
# The account is valid but the transaction amount is not supported.
|
|
768
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED = :valid_account_but_amount_not_supported
|
|
769
|
+
|
|
770
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
771
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
772
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
773
|
+
|
|
774
|
+
# The card authentication process has failed.
|
|
775
|
+
CARD_AUTHENTICATION_FAILED = :card_authentication_failed
|
|
776
|
+
|
|
720
777
|
# @!method self.values
|
|
721
778
|
# @return [Array<Symbol>]
|
|
722
779
|
end
|
|
@@ -697,6 +697,63 @@ module Increase
|
|
|
697
697
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
698
698
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER = :revocation_of_all_authorizations_order
|
|
699
699
|
|
|
700
|
+
# The record associated with the transaction could not be located.
|
|
701
|
+
UNABLE_TO_LOCATE_RECORD = :unable_to_locate_record
|
|
702
|
+
|
|
703
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
704
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE = :file_is_temporarily_unavailable
|
|
705
|
+
|
|
706
|
+
# The PIN entered for the transaction is incorrect.
|
|
707
|
+
INCORRECT_PIN = :incorrect_pin
|
|
708
|
+
|
|
709
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
710
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED = :allowable_number_of_pin_entry_tries_exceeded
|
|
711
|
+
|
|
712
|
+
# The previous message associated with the transaction could not be located.
|
|
713
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE = :unable_to_locate_previous_message
|
|
714
|
+
|
|
715
|
+
# An error was found with the PIN associated with the transaction.
|
|
716
|
+
PIN_ERROR_FOUND = :pin_error_found
|
|
717
|
+
|
|
718
|
+
# The PIN associated with the transaction could not be verified.
|
|
719
|
+
CANNOT_VERIFY_PIN = :cannot_verify_pin
|
|
720
|
+
|
|
721
|
+
# The verification data associated with the transaction has failed.
|
|
722
|
+
VERIFICATION_DATA_FAILED = :verification_data_failed
|
|
723
|
+
|
|
724
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
725
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
726
|
+
:surcharge_amount_not_supported_by_debit_network_issuer
|
|
727
|
+
|
|
728
|
+
# Cash service is not available for this transaction.
|
|
729
|
+
CASH_SERVICE_NOT_AVAILABLE = :cash_service_not_available
|
|
730
|
+
|
|
731
|
+
# The cashback request exceeds the issuer limit.
|
|
732
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT = :cashback_request_exceeds_issuer_limit
|
|
733
|
+
|
|
734
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
735
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
736
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount
|
|
737
|
+
|
|
738
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
739
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN = :transaction_does_not_qualify_for_visa_pin
|
|
740
|
+
|
|
741
|
+
# The transaction was declined offline.
|
|
742
|
+
OFFLINE_DECLINED = :offline_declined
|
|
743
|
+
|
|
744
|
+
# The terminal was unable to go online to process the transaction.
|
|
745
|
+
UNABLE_TO_GO_ONLINE = :unable_to_go_online
|
|
746
|
+
|
|
747
|
+
# The account is valid but the transaction amount is not supported.
|
|
748
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED = :valid_account_but_amount_not_supported
|
|
749
|
+
|
|
750
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
751
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
752
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
753
|
+
|
|
754
|
+
# The card authentication process has failed.
|
|
755
|
+
CARD_AUTHENTICATION_FAILED = :card_authentication_failed
|
|
756
|
+
|
|
700
757
|
# @!method self.values
|
|
701
758
|
# @return [Array<Symbol>]
|
|
702
759
|
end
|
|
@@ -325,6 +325,63 @@ module Increase
|
|
|
325
325
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
326
326
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER = :revocation_of_all_authorizations_order
|
|
327
327
|
|
|
328
|
+
# The record associated with the transaction could not be located.
|
|
329
|
+
UNABLE_TO_LOCATE_RECORD = :unable_to_locate_record
|
|
330
|
+
|
|
331
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
332
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE = :file_is_temporarily_unavailable
|
|
333
|
+
|
|
334
|
+
# The PIN entered for the transaction is incorrect.
|
|
335
|
+
INCORRECT_PIN = :incorrect_pin
|
|
336
|
+
|
|
337
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
338
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED = :allowable_number_of_pin_entry_tries_exceeded
|
|
339
|
+
|
|
340
|
+
# The previous message associated with the transaction could not be located.
|
|
341
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE = :unable_to_locate_previous_message
|
|
342
|
+
|
|
343
|
+
# An error was found with the PIN associated with the transaction.
|
|
344
|
+
PIN_ERROR_FOUND = :pin_error_found
|
|
345
|
+
|
|
346
|
+
# The PIN associated with the transaction could not be verified.
|
|
347
|
+
CANNOT_VERIFY_PIN = :cannot_verify_pin
|
|
348
|
+
|
|
349
|
+
# The verification data associated with the transaction has failed.
|
|
350
|
+
VERIFICATION_DATA_FAILED = :verification_data_failed
|
|
351
|
+
|
|
352
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
353
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
354
|
+
:surcharge_amount_not_supported_by_debit_network_issuer
|
|
355
|
+
|
|
356
|
+
# Cash service is not available for this transaction.
|
|
357
|
+
CASH_SERVICE_NOT_AVAILABLE = :cash_service_not_available
|
|
358
|
+
|
|
359
|
+
# The cashback request exceeds the issuer limit.
|
|
360
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT = :cashback_request_exceeds_issuer_limit
|
|
361
|
+
|
|
362
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
363
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
364
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount
|
|
365
|
+
|
|
366
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
367
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN = :transaction_does_not_qualify_for_visa_pin
|
|
368
|
+
|
|
369
|
+
# The transaction was declined offline.
|
|
370
|
+
OFFLINE_DECLINED = :offline_declined
|
|
371
|
+
|
|
372
|
+
# The terminal was unable to go online to process the transaction.
|
|
373
|
+
UNABLE_TO_GO_ONLINE = :unable_to_go_online
|
|
374
|
+
|
|
375
|
+
# The account is valid but the transaction amount is not supported.
|
|
376
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED = :valid_account_but_amount_not_supported
|
|
377
|
+
|
|
378
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
379
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
380
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
381
|
+
|
|
382
|
+
# The card authentication process has failed.
|
|
383
|
+
CARD_AUTHENTICATION_FAILED = :card_authentication_failed
|
|
384
|
+
|
|
328
385
|
# @!method self.values
|
|
329
386
|
# @return [Array<Symbol>]
|
|
330
387
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -1287,6 +1287,132 @@ module Increase
|
|
|
1287
1287
|
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1288
1288
|
)
|
|
1289
1289
|
|
|
1290
|
+
# The record associated with the transaction could not be located.
|
|
1291
|
+
UNABLE_TO_LOCATE_RECORD =
|
|
1292
|
+
T.let(
|
|
1293
|
+
:unable_to_locate_record,
|
|
1294
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1295
|
+
)
|
|
1296
|
+
|
|
1297
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
1298
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE =
|
|
1299
|
+
T.let(
|
|
1300
|
+
:file_is_temporarily_unavailable,
|
|
1301
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1302
|
+
)
|
|
1303
|
+
|
|
1304
|
+
# The PIN entered for the transaction is incorrect.
|
|
1305
|
+
INCORRECT_PIN =
|
|
1306
|
+
T.let(
|
|
1307
|
+
:incorrect_pin,
|
|
1308
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1309
|
+
)
|
|
1310
|
+
|
|
1311
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
1312
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED =
|
|
1313
|
+
T.let(
|
|
1314
|
+
:allowable_number_of_pin_entry_tries_exceeded,
|
|
1315
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1316
|
+
)
|
|
1317
|
+
|
|
1318
|
+
# The previous message associated with the transaction could not be located.
|
|
1319
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE =
|
|
1320
|
+
T.let(
|
|
1321
|
+
:unable_to_locate_previous_message,
|
|
1322
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1323
|
+
)
|
|
1324
|
+
|
|
1325
|
+
# An error was found with the PIN associated with the transaction.
|
|
1326
|
+
PIN_ERROR_FOUND =
|
|
1327
|
+
T.let(
|
|
1328
|
+
:pin_error_found,
|
|
1329
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1330
|
+
)
|
|
1331
|
+
|
|
1332
|
+
# The PIN associated with the transaction could not be verified.
|
|
1333
|
+
CANNOT_VERIFY_PIN =
|
|
1334
|
+
T.let(
|
|
1335
|
+
:cannot_verify_pin,
|
|
1336
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1337
|
+
)
|
|
1338
|
+
|
|
1339
|
+
# The verification data associated with the transaction has failed.
|
|
1340
|
+
VERIFICATION_DATA_FAILED =
|
|
1341
|
+
T.let(
|
|
1342
|
+
:verification_data_failed,
|
|
1343
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1344
|
+
)
|
|
1345
|
+
|
|
1346
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
1347
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
1348
|
+
T.let(
|
|
1349
|
+
:surcharge_amount_not_supported_by_debit_network_issuer,
|
|
1350
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1351
|
+
)
|
|
1352
|
+
|
|
1353
|
+
# Cash service is not available for this transaction.
|
|
1354
|
+
CASH_SERVICE_NOT_AVAILABLE =
|
|
1355
|
+
T.let(
|
|
1356
|
+
:cash_service_not_available,
|
|
1357
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1358
|
+
)
|
|
1359
|
+
|
|
1360
|
+
# The cashback request exceeds the issuer limit.
|
|
1361
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT =
|
|
1362
|
+
T.let(
|
|
1363
|
+
:cashback_request_exceeds_issuer_limit,
|
|
1364
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1365
|
+
)
|
|
1366
|
+
|
|
1367
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
1368
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
1369
|
+
T.let(
|
|
1370
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount,
|
|
1371
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1372
|
+
)
|
|
1373
|
+
|
|
1374
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
1375
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN =
|
|
1376
|
+
T.let(
|
|
1377
|
+
:transaction_does_not_qualify_for_visa_pin,
|
|
1378
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1379
|
+
)
|
|
1380
|
+
|
|
1381
|
+
# The transaction was declined offline.
|
|
1382
|
+
OFFLINE_DECLINED =
|
|
1383
|
+
T.let(
|
|
1384
|
+
:offline_declined,
|
|
1385
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1386
|
+
)
|
|
1387
|
+
|
|
1388
|
+
# The terminal was unable to go online to process the transaction.
|
|
1389
|
+
UNABLE_TO_GO_ONLINE =
|
|
1390
|
+
T.let(
|
|
1391
|
+
:unable_to_go_online,
|
|
1392
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1393
|
+
)
|
|
1394
|
+
|
|
1395
|
+
# The account is valid but the transaction amount is not supported.
|
|
1396
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED =
|
|
1397
|
+
T.let(
|
|
1398
|
+
:valid_account_but_amount_not_supported,
|
|
1399
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1400
|
+
)
|
|
1401
|
+
|
|
1402
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
1403
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
1404
|
+
T.let(
|
|
1405
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt,
|
|
1406
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1407
|
+
)
|
|
1408
|
+
|
|
1409
|
+
# The card authentication process has failed.
|
|
1410
|
+
CARD_AUTHENTICATION_FAILED =
|
|
1411
|
+
T.let(
|
|
1412
|
+
:card_authentication_failed,
|
|
1413
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1414
|
+
)
|
|
1415
|
+
|
|
1290
1416
|
sig do
|
|
1291
1417
|
override.returns(
|
|
1292
1418
|
T::Array[
|
|
@@ -1331,6 +1331,132 @@ module Increase
|
|
|
1331
1331
|
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1332
1332
|
)
|
|
1333
1333
|
|
|
1334
|
+
# The record associated with the transaction could not be located.
|
|
1335
|
+
UNABLE_TO_LOCATE_RECORD =
|
|
1336
|
+
T.let(
|
|
1337
|
+
:unable_to_locate_record,
|
|
1338
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1339
|
+
)
|
|
1340
|
+
|
|
1341
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
1342
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE =
|
|
1343
|
+
T.let(
|
|
1344
|
+
:file_is_temporarily_unavailable,
|
|
1345
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1346
|
+
)
|
|
1347
|
+
|
|
1348
|
+
# The PIN entered for the transaction is incorrect.
|
|
1349
|
+
INCORRECT_PIN =
|
|
1350
|
+
T.let(
|
|
1351
|
+
:incorrect_pin,
|
|
1352
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1353
|
+
)
|
|
1354
|
+
|
|
1355
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
1356
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED =
|
|
1357
|
+
T.let(
|
|
1358
|
+
:allowable_number_of_pin_entry_tries_exceeded,
|
|
1359
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1360
|
+
)
|
|
1361
|
+
|
|
1362
|
+
# The previous message associated with the transaction could not be located.
|
|
1363
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE =
|
|
1364
|
+
T.let(
|
|
1365
|
+
:unable_to_locate_previous_message,
|
|
1366
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1367
|
+
)
|
|
1368
|
+
|
|
1369
|
+
# An error was found with the PIN associated with the transaction.
|
|
1370
|
+
PIN_ERROR_FOUND =
|
|
1371
|
+
T.let(
|
|
1372
|
+
:pin_error_found,
|
|
1373
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1374
|
+
)
|
|
1375
|
+
|
|
1376
|
+
# The PIN associated with the transaction could not be verified.
|
|
1377
|
+
CANNOT_VERIFY_PIN =
|
|
1378
|
+
T.let(
|
|
1379
|
+
:cannot_verify_pin,
|
|
1380
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1381
|
+
)
|
|
1382
|
+
|
|
1383
|
+
# The verification data associated with the transaction has failed.
|
|
1384
|
+
VERIFICATION_DATA_FAILED =
|
|
1385
|
+
T.let(
|
|
1386
|
+
:verification_data_failed,
|
|
1387
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1388
|
+
)
|
|
1389
|
+
|
|
1390
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
1391
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
1392
|
+
T.let(
|
|
1393
|
+
:surcharge_amount_not_supported_by_debit_network_issuer,
|
|
1394
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1395
|
+
)
|
|
1396
|
+
|
|
1397
|
+
# Cash service is not available for this transaction.
|
|
1398
|
+
CASH_SERVICE_NOT_AVAILABLE =
|
|
1399
|
+
T.let(
|
|
1400
|
+
:cash_service_not_available,
|
|
1401
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1402
|
+
)
|
|
1403
|
+
|
|
1404
|
+
# The cashback request exceeds the issuer limit.
|
|
1405
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT =
|
|
1406
|
+
T.let(
|
|
1407
|
+
:cashback_request_exceeds_issuer_limit,
|
|
1408
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1409
|
+
)
|
|
1410
|
+
|
|
1411
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
1412
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
1413
|
+
T.let(
|
|
1414
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount,
|
|
1415
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1416
|
+
)
|
|
1417
|
+
|
|
1418
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
1419
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN =
|
|
1420
|
+
T.let(
|
|
1421
|
+
:transaction_does_not_qualify_for_visa_pin,
|
|
1422
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1423
|
+
)
|
|
1424
|
+
|
|
1425
|
+
# The transaction was declined offline.
|
|
1426
|
+
OFFLINE_DECLINED =
|
|
1427
|
+
T.let(
|
|
1428
|
+
:offline_declined,
|
|
1429
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1430
|
+
)
|
|
1431
|
+
|
|
1432
|
+
# The terminal was unable to go online to process the transaction.
|
|
1433
|
+
UNABLE_TO_GO_ONLINE =
|
|
1434
|
+
T.let(
|
|
1435
|
+
:unable_to_go_online,
|
|
1436
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1437
|
+
)
|
|
1438
|
+
|
|
1439
|
+
# The account is valid but the transaction amount is not supported.
|
|
1440
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED =
|
|
1441
|
+
T.let(
|
|
1442
|
+
:valid_account_but_amount_not_supported,
|
|
1443
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1444
|
+
)
|
|
1445
|
+
|
|
1446
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
1447
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
1448
|
+
T.let(
|
|
1449
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt,
|
|
1450
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1451
|
+
)
|
|
1452
|
+
|
|
1453
|
+
# The card authentication process has failed.
|
|
1454
|
+
CARD_AUTHENTICATION_FAILED =
|
|
1455
|
+
T.let(
|
|
1456
|
+
:card_authentication_failed,
|
|
1457
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1458
|
+
)
|
|
1459
|
+
|
|
1334
1460
|
sig do
|
|
1335
1461
|
override.returns(
|
|
1336
1462
|
T::Array[Increase::CardValidation::Decline::Reason::TaggedSymbol]
|
|
@@ -788,6 +788,132 @@ module Increase
|
|
|
788
788
|
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
789
789
|
)
|
|
790
790
|
|
|
791
|
+
# The record associated with the transaction could not be located.
|
|
792
|
+
UNABLE_TO_LOCATE_RECORD =
|
|
793
|
+
T.let(
|
|
794
|
+
:unable_to_locate_record,
|
|
795
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
796
|
+
)
|
|
797
|
+
|
|
798
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
799
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE =
|
|
800
|
+
T.let(
|
|
801
|
+
:file_is_temporarily_unavailable,
|
|
802
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
803
|
+
)
|
|
804
|
+
|
|
805
|
+
# The PIN entered for the transaction is incorrect.
|
|
806
|
+
INCORRECT_PIN =
|
|
807
|
+
T.let(
|
|
808
|
+
:incorrect_pin,
|
|
809
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
810
|
+
)
|
|
811
|
+
|
|
812
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
813
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED =
|
|
814
|
+
T.let(
|
|
815
|
+
:allowable_number_of_pin_entry_tries_exceeded,
|
|
816
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
817
|
+
)
|
|
818
|
+
|
|
819
|
+
# The previous message associated with the transaction could not be located.
|
|
820
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE =
|
|
821
|
+
T.let(
|
|
822
|
+
:unable_to_locate_previous_message,
|
|
823
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
824
|
+
)
|
|
825
|
+
|
|
826
|
+
# An error was found with the PIN associated with the transaction.
|
|
827
|
+
PIN_ERROR_FOUND =
|
|
828
|
+
T.let(
|
|
829
|
+
:pin_error_found,
|
|
830
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
831
|
+
)
|
|
832
|
+
|
|
833
|
+
# The PIN associated with the transaction could not be verified.
|
|
834
|
+
CANNOT_VERIFY_PIN =
|
|
835
|
+
T.let(
|
|
836
|
+
:cannot_verify_pin,
|
|
837
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
838
|
+
)
|
|
839
|
+
|
|
840
|
+
# The verification data associated with the transaction has failed.
|
|
841
|
+
VERIFICATION_DATA_FAILED =
|
|
842
|
+
T.let(
|
|
843
|
+
:verification_data_failed,
|
|
844
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
845
|
+
)
|
|
846
|
+
|
|
847
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
848
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
849
|
+
T.let(
|
|
850
|
+
:surcharge_amount_not_supported_by_debit_network_issuer,
|
|
851
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
852
|
+
)
|
|
853
|
+
|
|
854
|
+
# Cash service is not available for this transaction.
|
|
855
|
+
CASH_SERVICE_NOT_AVAILABLE =
|
|
856
|
+
T.let(
|
|
857
|
+
:cash_service_not_available,
|
|
858
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
859
|
+
)
|
|
860
|
+
|
|
861
|
+
# The cashback request exceeds the issuer limit.
|
|
862
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT =
|
|
863
|
+
T.let(
|
|
864
|
+
:cashback_request_exceeds_issuer_limit,
|
|
865
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
866
|
+
)
|
|
867
|
+
|
|
868
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
869
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
870
|
+
T.let(
|
|
871
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount,
|
|
872
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
873
|
+
)
|
|
874
|
+
|
|
875
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
876
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN =
|
|
877
|
+
T.let(
|
|
878
|
+
:transaction_does_not_qualify_for_visa_pin,
|
|
879
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
880
|
+
)
|
|
881
|
+
|
|
882
|
+
# The transaction was declined offline.
|
|
883
|
+
OFFLINE_DECLINED =
|
|
884
|
+
T.let(
|
|
885
|
+
:offline_declined,
|
|
886
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
887
|
+
)
|
|
888
|
+
|
|
889
|
+
# The terminal was unable to go online to process the transaction.
|
|
890
|
+
UNABLE_TO_GO_ONLINE =
|
|
891
|
+
T.let(
|
|
892
|
+
:unable_to_go_online,
|
|
893
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
894
|
+
)
|
|
895
|
+
|
|
896
|
+
# The account is valid but the transaction amount is not supported.
|
|
897
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED =
|
|
898
|
+
T.let(
|
|
899
|
+
:valid_account_but_amount_not_supported,
|
|
900
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
901
|
+
)
|
|
902
|
+
|
|
903
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
904
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
905
|
+
T.let(
|
|
906
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt,
|
|
907
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
908
|
+
)
|
|
909
|
+
|
|
910
|
+
# The card authentication process has failed.
|
|
911
|
+
CARD_AUTHENTICATION_FAILED =
|
|
912
|
+
T.let(
|
|
913
|
+
:card_authentication_failed,
|
|
914
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
915
|
+
)
|
|
916
|
+
|
|
791
917
|
sig do
|
|
792
918
|
override.returns(
|
|
793
919
|
T::Array[
|
|
@@ -445,6 +445,24 @@ module Increase
|
|
|
445
445
|
| :stop_payment_order
|
|
446
446
|
| :revocation_of_authorization_order
|
|
447
447
|
| :revocation_of_all_authorizations_order
|
|
448
|
+
| :unable_to_locate_record
|
|
449
|
+
| :file_is_temporarily_unavailable
|
|
450
|
+
| :incorrect_pin
|
|
451
|
+
| :allowable_number_of_pin_entry_tries_exceeded
|
|
452
|
+
| :unable_to_locate_previous_message
|
|
453
|
+
| :pin_error_found
|
|
454
|
+
| :cannot_verify_pin
|
|
455
|
+
| :verification_data_failed
|
|
456
|
+
| :surcharge_amount_not_supported_by_debit_network_issuer
|
|
457
|
+
| :cash_service_not_available
|
|
458
|
+
| :cashback_request_exceeds_issuer_limit
|
|
459
|
+
| :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
460
|
+
| :transaction_does_not_qualify_for_visa_pin
|
|
461
|
+
| :offline_declined
|
|
462
|
+
| :unable_to_go_online
|
|
463
|
+
| :valid_account_but_amount_not_supported
|
|
464
|
+
| :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
465
|
+
| :card_authentication_failed
|
|
448
466
|
|
|
449
467
|
module Reason
|
|
450
468
|
extend Increase::Internal::Type::Enum
|
|
@@ -581,6 +599,60 @@ module Increase
|
|
|
581
599
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
582
600
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
583
601
|
|
|
602
|
+
# The record associated with the transaction could not be located.
|
|
603
|
+
UNABLE_TO_LOCATE_RECORD: :unable_to_locate_record
|
|
604
|
+
|
|
605
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
606
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE: :file_is_temporarily_unavailable
|
|
607
|
+
|
|
608
|
+
# The PIN entered for the transaction is incorrect.
|
|
609
|
+
INCORRECT_PIN: :incorrect_pin
|
|
610
|
+
|
|
611
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
612
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED: :allowable_number_of_pin_entry_tries_exceeded
|
|
613
|
+
|
|
614
|
+
# The previous message associated with the transaction could not be located.
|
|
615
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE: :unable_to_locate_previous_message
|
|
616
|
+
|
|
617
|
+
# An error was found with the PIN associated with the transaction.
|
|
618
|
+
PIN_ERROR_FOUND: :pin_error_found
|
|
619
|
+
|
|
620
|
+
# The PIN associated with the transaction could not be verified.
|
|
621
|
+
CANNOT_VERIFY_PIN: :cannot_verify_pin
|
|
622
|
+
|
|
623
|
+
# The verification data associated with the transaction has failed.
|
|
624
|
+
VERIFICATION_DATA_FAILED: :verification_data_failed
|
|
625
|
+
|
|
626
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
627
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER: :surcharge_amount_not_supported_by_debit_network_issuer
|
|
628
|
+
|
|
629
|
+
# Cash service is not available for this transaction.
|
|
630
|
+
CASH_SERVICE_NOT_AVAILABLE: :cash_service_not_available
|
|
631
|
+
|
|
632
|
+
# The cashback request exceeds the issuer limit.
|
|
633
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT: :cashback_request_exceeds_issuer_limit
|
|
634
|
+
|
|
635
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
636
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT: :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
637
|
+
|
|
638
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
639
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN: :transaction_does_not_qualify_for_visa_pin
|
|
640
|
+
|
|
641
|
+
# The transaction was declined offline.
|
|
642
|
+
OFFLINE_DECLINED: :offline_declined
|
|
643
|
+
|
|
644
|
+
# The terminal was unable to go online to process the transaction.
|
|
645
|
+
UNABLE_TO_GO_ONLINE: :unable_to_go_online
|
|
646
|
+
|
|
647
|
+
# The account is valid but the transaction amount is not supported.
|
|
648
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED: :valid_account_but_amount_not_supported
|
|
649
|
+
|
|
650
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
651
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT: :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
652
|
+
|
|
653
|
+
# The card authentication process has failed.
|
|
654
|
+
CARD_AUTHENTICATION_FAILED: :card_authentication_failed
|
|
655
|
+
|
|
584
656
|
def self?.values: -> ::Array[Increase::Models::CardPushTransfer::Decline::reason]
|
|
585
657
|
end
|
|
586
658
|
end
|
|
@@ -443,6 +443,24 @@ module Increase
|
|
|
443
443
|
| :stop_payment_order
|
|
444
444
|
| :revocation_of_authorization_order
|
|
445
445
|
| :revocation_of_all_authorizations_order
|
|
446
|
+
| :unable_to_locate_record
|
|
447
|
+
| :file_is_temporarily_unavailable
|
|
448
|
+
| :incorrect_pin
|
|
449
|
+
| :allowable_number_of_pin_entry_tries_exceeded
|
|
450
|
+
| :unable_to_locate_previous_message
|
|
451
|
+
| :pin_error_found
|
|
452
|
+
| :cannot_verify_pin
|
|
453
|
+
| :verification_data_failed
|
|
454
|
+
| :surcharge_amount_not_supported_by_debit_network_issuer
|
|
455
|
+
| :cash_service_not_available
|
|
456
|
+
| :cashback_request_exceeds_issuer_limit
|
|
457
|
+
| :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
458
|
+
| :transaction_does_not_qualify_for_visa_pin
|
|
459
|
+
| :offline_declined
|
|
460
|
+
| :unable_to_go_online
|
|
461
|
+
| :valid_account_but_amount_not_supported
|
|
462
|
+
| :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
463
|
+
| :card_authentication_failed
|
|
446
464
|
|
|
447
465
|
module Reason
|
|
448
466
|
extend Increase::Internal::Type::Enum
|
|
@@ -579,6 +597,60 @@ module Increase
|
|
|
579
597
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
580
598
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
581
599
|
|
|
600
|
+
# The record associated with the transaction could not be located.
|
|
601
|
+
UNABLE_TO_LOCATE_RECORD: :unable_to_locate_record
|
|
602
|
+
|
|
603
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
604
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE: :file_is_temporarily_unavailable
|
|
605
|
+
|
|
606
|
+
# The PIN entered for the transaction is incorrect.
|
|
607
|
+
INCORRECT_PIN: :incorrect_pin
|
|
608
|
+
|
|
609
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
610
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED: :allowable_number_of_pin_entry_tries_exceeded
|
|
611
|
+
|
|
612
|
+
# The previous message associated with the transaction could not be located.
|
|
613
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE: :unable_to_locate_previous_message
|
|
614
|
+
|
|
615
|
+
# An error was found with the PIN associated with the transaction.
|
|
616
|
+
PIN_ERROR_FOUND: :pin_error_found
|
|
617
|
+
|
|
618
|
+
# The PIN associated with the transaction could not be verified.
|
|
619
|
+
CANNOT_VERIFY_PIN: :cannot_verify_pin
|
|
620
|
+
|
|
621
|
+
# The verification data associated with the transaction has failed.
|
|
622
|
+
VERIFICATION_DATA_FAILED: :verification_data_failed
|
|
623
|
+
|
|
624
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
625
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER: :surcharge_amount_not_supported_by_debit_network_issuer
|
|
626
|
+
|
|
627
|
+
# Cash service is not available for this transaction.
|
|
628
|
+
CASH_SERVICE_NOT_AVAILABLE: :cash_service_not_available
|
|
629
|
+
|
|
630
|
+
# The cashback request exceeds the issuer limit.
|
|
631
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT: :cashback_request_exceeds_issuer_limit
|
|
632
|
+
|
|
633
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
634
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT: :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
635
|
+
|
|
636
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
637
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN: :transaction_does_not_qualify_for_visa_pin
|
|
638
|
+
|
|
639
|
+
# The transaction was declined offline.
|
|
640
|
+
OFFLINE_DECLINED: :offline_declined
|
|
641
|
+
|
|
642
|
+
# The terminal was unable to go online to process the transaction.
|
|
643
|
+
UNABLE_TO_GO_ONLINE: :unable_to_go_online
|
|
644
|
+
|
|
645
|
+
# The account is valid but the transaction amount is not supported.
|
|
646
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED: :valid_account_but_amount_not_supported
|
|
647
|
+
|
|
648
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
649
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT: :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
650
|
+
|
|
651
|
+
# The card authentication process has failed.
|
|
652
|
+
CARD_AUTHENTICATION_FAILED: :card_authentication_failed
|
|
653
|
+
|
|
582
654
|
def self?.values: -> ::Array[Increase::Models::CardValidation::Decline::reason]
|
|
583
655
|
end
|
|
584
656
|
end
|
|
@@ -237,6 +237,24 @@ module Increase
|
|
|
237
237
|
| :stop_payment_order
|
|
238
238
|
| :revocation_of_authorization_order
|
|
239
239
|
| :revocation_of_all_authorizations_order
|
|
240
|
+
| :unable_to_locate_record
|
|
241
|
+
| :file_is_temporarily_unavailable
|
|
242
|
+
| :incorrect_pin
|
|
243
|
+
| :allowable_number_of_pin_entry_tries_exceeded
|
|
244
|
+
| :unable_to_locate_previous_message
|
|
245
|
+
| :pin_error_found
|
|
246
|
+
| :cannot_verify_pin
|
|
247
|
+
| :verification_data_failed
|
|
248
|
+
| :surcharge_amount_not_supported_by_debit_network_issuer
|
|
249
|
+
| :cash_service_not_available
|
|
250
|
+
| :cashback_request_exceeds_issuer_limit
|
|
251
|
+
| :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
252
|
+
| :transaction_does_not_qualify_for_visa_pin
|
|
253
|
+
| :offline_declined
|
|
254
|
+
| :unable_to_go_online
|
|
255
|
+
| :valid_account_but_amount_not_supported
|
|
256
|
+
| :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
257
|
+
| :card_authentication_failed
|
|
240
258
|
|
|
241
259
|
module Reason
|
|
242
260
|
extend Increase::Internal::Type::Enum
|
|
@@ -373,6 +391,60 @@ module Increase
|
|
|
373
391
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
374
392
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
375
393
|
|
|
394
|
+
# The record associated with the transaction could not be located.
|
|
395
|
+
UNABLE_TO_LOCATE_RECORD: :unable_to_locate_record
|
|
396
|
+
|
|
397
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
398
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE: :file_is_temporarily_unavailable
|
|
399
|
+
|
|
400
|
+
# The PIN entered for the transaction is incorrect.
|
|
401
|
+
INCORRECT_PIN: :incorrect_pin
|
|
402
|
+
|
|
403
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
404
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED: :allowable_number_of_pin_entry_tries_exceeded
|
|
405
|
+
|
|
406
|
+
# The previous message associated with the transaction could not be located.
|
|
407
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE: :unable_to_locate_previous_message
|
|
408
|
+
|
|
409
|
+
# An error was found with the PIN associated with the transaction.
|
|
410
|
+
PIN_ERROR_FOUND: :pin_error_found
|
|
411
|
+
|
|
412
|
+
# The PIN associated with the transaction could not be verified.
|
|
413
|
+
CANNOT_VERIFY_PIN: :cannot_verify_pin
|
|
414
|
+
|
|
415
|
+
# The verification data associated with the transaction has failed.
|
|
416
|
+
VERIFICATION_DATA_FAILED: :verification_data_failed
|
|
417
|
+
|
|
418
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
419
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER: :surcharge_amount_not_supported_by_debit_network_issuer
|
|
420
|
+
|
|
421
|
+
# Cash service is not available for this transaction.
|
|
422
|
+
CASH_SERVICE_NOT_AVAILABLE: :cash_service_not_available
|
|
423
|
+
|
|
424
|
+
# The cashback request exceeds the issuer limit.
|
|
425
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT: :cashback_request_exceeds_issuer_limit
|
|
426
|
+
|
|
427
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
428
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT: :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
429
|
+
|
|
430
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
431
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN: :transaction_does_not_qualify_for_visa_pin
|
|
432
|
+
|
|
433
|
+
# The transaction was declined offline.
|
|
434
|
+
OFFLINE_DECLINED: :offline_declined
|
|
435
|
+
|
|
436
|
+
# The terminal was unable to go online to process the transaction.
|
|
437
|
+
UNABLE_TO_GO_ONLINE: :unable_to_go_online
|
|
438
|
+
|
|
439
|
+
# The account is valid but the transaction amount is not supported.
|
|
440
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED: :valid_account_but_amount_not_supported
|
|
441
|
+
|
|
442
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
443
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT: :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
444
|
+
|
|
445
|
+
# The card authentication process has failed.
|
|
446
|
+
CARD_AUTHENTICATION_FAILED: :card_authentication_failed
|
|
447
|
+
|
|
376
448
|
def self?.values: -> ::Array[Increase::Models::Simulations::CardTokenCreateParams::Outcome::Decline::reason]
|
|
377
449
|
end
|
|
378
450
|
end
|