increase 1.258.0 → 1.260.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 +21 -0
- data/README.md +1 -1
- data/lib/increase/models/card_push_transfer.rb +75 -0
- data/lib/increase/models/card_validation.rb +75 -0
- data/lib/increase/models/simulations/card_token_create_params.rb +75 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_push_transfer.rbi +168 -0
- data/rbi/increase/models/card_validation.rbi +168 -0
- data/rbi/increase/models/simulations/card_token_create_params.rbi +168 -0
- data/sig/increase/models/card_push_transfer.rbs +96 -0
- data/sig/increase/models/card_validation.rbs +96 -0
- data/sig/increase/models/simulations/card_token_create_params.rbs +96 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f0ce2838a24b7d7fb3cc821d7ed82e39205d5ad0688bec7e25e578e632943b0
|
|
4
|
+
data.tar.gz: 97a226d61e2fdde405a6517dcb4395e838a96625a489a5a8ef91efc4a039f1ac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1149ee2d75d174c23c114621451482ccd22ada10883c2201574da42fbbef6d6e5caf291ddff0ccaf55e8ca2cc51995169f3274475d18ff18b9f1fb1e91c24499
|
|
7
|
+
data.tar.gz: 02f242d6839922b1f2f64c9fd47238569728b4788e2fbd2b23605dbf0bcd4e2534fd8c9033e0b0447b4ce9e161a175b49bdd088eafbd80100de068b6817f753e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.260.0 (2026-03-18)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v1.259.0...v1.260.0](https://github.com/Increase/increase-ruby/compare/v1.259.0...v1.260.0)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([5a597e5](https://github.com/Increase/increase-ruby/commit/5a597e5c24be4b9fca143653200cafcd2382c0cb))
|
|
10
|
+
|
|
11
|
+
## 1.259.0 (2026-03-18)
|
|
12
|
+
|
|
13
|
+
Full Changelog: [v1.258.0...v1.259.0](https://github.com/Increase/increase-ruby/compare/v1.258.0...v1.259.0)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* **api:** api update ([5cb54ff](https://github.com/Increase/increase-ruby/commit/5cb54ffa72d3ce76ddad8bdb1eba83ff8abf89db))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Chores
|
|
21
|
+
|
|
22
|
+
* **internal:** tweak CI branches ([8d5b90e](https://github.com/Increase/increase-ruby/commit/8d5b90e28e85a242a720375c9e9055226ddb450d))
|
|
23
|
+
|
|
3
24
|
## 1.258.0 (2026-03-16)
|
|
4
25
|
|
|
5
26
|
Full Changelog: [v1.257.0...v1.258.0](https://github.com/Increase/increase-ruby/compare/v1.257.0...v1.258.0)
|
data/README.md
CHANGED
|
@@ -672,6 +672,9 @@ module Increase
|
|
|
672
672
|
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
|
|
673
673
|
:transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
674
674
|
|
|
675
|
+
# The transaction was blocked by the cardholder.
|
|
676
|
+
BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
|
|
677
|
+
|
|
675
678
|
# The first use of the card has been blocked by the issuer.
|
|
676
679
|
BLOCKED_FIRST_USE = :blocked_first_use
|
|
677
680
|
|
|
@@ -714,6 +717,78 @@ module Increase
|
|
|
714
717
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
715
718
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER = :revocation_of_all_authorizations_order
|
|
716
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
|
+
# The data in the transaction is inconsistent with the original message.
|
|
736
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE = :data_inconsistent_with_original_message
|
|
737
|
+
|
|
738
|
+
# An error was found with the PIN associated with the transaction.
|
|
739
|
+
PIN_ERROR_FOUND = :pin_error_found
|
|
740
|
+
|
|
741
|
+
# The PIN associated with the transaction could not be verified.
|
|
742
|
+
CANNOT_VERIFY_PIN = :cannot_verify_pin
|
|
743
|
+
|
|
744
|
+
# The verification data associated with the transaction has failed.
|
|
745
|
+
VERIFICATION_DATA_FAILED = :verification_data_failed
|
|
746
|
+
|
|
747
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
748
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
749
|
+
:surcharge_amount_not_supported_by_debit_network_issuer
|
|
750
|
+
|
|
751
|
+
# Cash service is not available for this transaction.
|
|
752
|
+
CASH_SERVICE_NOT_AVAILABLE = :cash_service_not_available
|
|
753
|
+
|
|
754
|
+
# The cashback request exceeds the issuer limit.
|
|
755
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT = :cashback_request_exceeds_issuer_limit
|
|
756
|
+
|
|
757
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
758
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
759
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount
|
|
760
|
+
|
|
761
|
+
# The biller information provided is invalid.
|
|
762
|
+
INVALID_BILLER_INFORMATION = :invalid_biller_information
|
|
763
|
+
|
|
764
|
+
# The PIN change request has been declined.
|
|
765
|
+
PIN_CHANGE_REQUEST_DECLINED = :pin_change_request_declined
|
|
766
|
+
|
|
767
|
+
# The PIN provided is considered unsafe.
|
|
768
|
+
UNSAFE_PIN = :unsafe_pin
|
|
769
|
+
|
|
770
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
771
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN = :transaction_does_not_qualify_for_visa_pin
|
|
772
|
+
|
|
773
|
+
# The transaction was declined offline.
|
|
774
|
+
OFFLINE_DECLINED = :offline_declined
|
|
775
|
+
|
|
776
|
+
# The terminal was unable to go online to process the transaction.
|
|
777
|
+
UNABLE_TO_GO_ONLINE = :unable_to_go_online
|
|
778
|
+
|
|
779
|
+
# The account is valid but the transaction amount is not supported.
|
|
780
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED = :valid_account_but_amount_not_supported
|
|
781
|
+
|
|
782
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
783
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
784
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
785
|
+
|
|
786
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
787
|
+
FORWARD_TO_ISSUER = :forward_to_issuer
|
|
788
|
+
|
|
789
|
+
# The card authentication process has failed.
|
|
790
|
+
CARD_AUTHENTICATION_FAILED = :card_authentication_failed
|
|
791
|
+
|
|
717
792
|
# @!method self.values
|
|
718
793
|
# @return [Array<Symbol>]
|
|
719
794
|
end
|
|
@@ -652,6 +652,9 @@ module Increase
|
|
|
652
652
|
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
|
|
653
653
|
:transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
654
654
|
|
|
655
|
+
# The transaction was blocked by the cardholder.
|
|
656
|
+
BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
|
|
657
|
+
|
|
655
658
|
# The first use of the card has been blocked by the issuer.
|
|
656
659
|
BLOCKED_FIRST_USE = :blocked_first_use
|
|
657
660
|
|
|
@@ -694,6 +697,78 @@ module Increase
|
|
|
694
697
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
695
698
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER = :revocation_of_all_authorizations_order
|
|
696
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
|
+
# The data in the transaction is inconsistent with the original message.
|
|
716
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE = :data_inconsistent_with_original_message
|
|
717
|
+
|
|
718
|
+
# An error was found with the PIN associated with the transaction.
|
|
719
|
+
PIN_ERROR_FOUND = :pin_error_found
|
|
720
|
+
|
|
721
|
+
# The PIN associated with the transaction could not be verified.
|
|
722
|
+
CANNOT_VERIFY_PIN = :cannot_verify_pin
|
|
723
|
+
|
|
724
|
+
# The verification data associated with the transaction has failed.
|
|
725
|
+
VERIFICATION_DATA_FAILED = :verification_data_failed
|
|
726
|
+
|
|
727
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
728
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
729
|
+
:surcharge_amount_not_supported_by_debit_network_issuer
|
|
730
|
+
|
|
731
|
+
# Cash service is not available for this transaction.
|
|
732
|
+
CASH_SERVICE_NOT_AVAILABLE = :cash_service_not_available
|
|
733
|
+
|
|
734
|
+
# The cashback request exceeds the issuer limit.
|
|
735
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT = :cashback_request_exceeds_issuer_limit
|
|
736
|
+
|
|
737
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
738
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
739
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount
|
|
740
|
+
|
|
741
|
+
# The biller information provided is invalid.
|
|
742
|
+
INVALID_BILLER_INFORMATION = :invalid_biller_information
|
|
743
|
+
|
|
744
|
+
# The PIN change request has been declined.
|
|
745
|
+
PIN_CHANGE_REQUEST_DECLINED = :pin_change_request_declined
|
|
746
|
+
|
|
747
|
+
# The PIN provided is considered unsafe.
|
|
748
|
+
UNSAFE_PIN = :unsafe_pin
|
|
749
|
+
|
|
750
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
751
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN = :transaction_does_not_qualify_for_visa_pin
|
|
752
|
+
|
|
753
|
+
# The transaction was declined offline.
|
|
754
|
+
OFFLINE_DECLINED = :offline_declined
|
|
755
|
+
|
|
756
|
+
# The terminal was unable to go online to process the transaction.
|
|
757
|
+
UNABLE_TO_GO_ONLINE = :unable_to_go_online
|
|
758
|
+
|
|
759
|
+
# The account is valid but the transaction amount is not supported.
|
|
760
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED = :valid_account_but_amount_not_supported
|
|
761
|
+
|
|
762
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
763
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
764
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
765
|
+
|
|
766
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
767
|
+
FORWARD_TO_ISSUER = :forward_to_issuer
|
|
768
|
+
|
|
769
|
+
# The card authentication process has failed.
|
|
770
|
+
CARD_AUTHENTICATION_FAILED = :card_authentication_failed
|
|
771
|
+
|
|
697
772
|
# @!method self.values
|
|
698
773
|
# @return [Array<Symbol>]
|
|
699
774
|
end
|
|
@@ -280,6 +280,9 @@ module Increase
|
|
|
280
280
|
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT =
|
|
281
281
|
:transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
282
282
|
|
|
283
|
+
# The transaction was blocked by the cardholder.
|
|
284
|
+
BLOCKED_BY_CARDHOLDER = :blocked_by_cardholder
|
|
285
|
+
|
|
283
286
|
# The first use of the card has been blocked by the issuer.
|
|
284
287
|
BLOCKED_FIRST_USE = :blocked_first_use
|
|
285
288
|
|
|
@@ -322,6 +325,78 @@ module Increase
|
|
|
322
325
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
323
326
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER = :revocation_of_all_authorizations_order
|
|
324
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
|
+
# The data in the transaction is inconsistent with the original message.
|
|
344
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE = :data_inconsistent_with_original_message
|
|
345
|
+
|
|
346
|
+
# An error was found with the PIN associated with the transaction.
|
|
347
|
+
PIN_ERROR_FOUND = :pin_error_found
|
|
348
|
+
|
|
349
|
+
# The PIN associated with the transaction could not be verified.
|
|
350
|
+
CANNOT_VERIFY_PIN = :cannot_verify_pin
|
|
351
|
+
|
|
352
|
+
# The verification data associated with the transaction has failed.
|
|
353
|
+
VERIFICATION_DATA_FAILED = :verification_data_failed
|
|
354
|
+
|
|
355
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
356
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
357
|
+
:surcharge_amount_not_supported_by_debit_network_issuer
|
|
358
|
+
|
|
359
|
+
# Cash service is not available for this transaction.
|
|
360
|
+
CASH_SERVICE_NOT_AVAILABLE = :cash_service_not_available
|
|
361
|
+
|
|
362
|
+
# The cashback request exceeds the issuer limit.
|
|
363
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT = :cashback_request_exceeds_issuer_limit
|
|
364
|
+
|
|
365
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
366
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
367
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount
|
|
368
|
+
|
|
369
|
+
# The biller information provided is invalid.
|
|
370
|
+
INVALID_BILLER_INFORMATION = :invalid_biller_information
|
|
371
|
+
|
|
372
|
+
# The PIN change request has been declined.
|
|
373
|
+
PIN_CHANGE_REQUEST_DECLINED = :pin_change_request_declined
|
|
374
|
+
|
|
375
|
+
# The PIN provided is considered unsafe.
|
|
376
|
+
UNSAFE_PIN = :unsafe_pin
|
|
377
|
+
|
|
378
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
379
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN = :transaction_does_not_qualify_for_visa_pin
|
|
380
|
+
|
|
381
|
+
# The transaction was declined offline.
|
|
382
|
+
OFFLINE_DECLINED = :offline_declined
|
|
383
|
+
|
|
384
|
+
# The terminal was unable to go online to process the transaction.
|
|
385
|
+
UNABLE_TO_GO_ONLINE = :unable_to_go_online
|
|
386
|
+
|
|
387
|
+
# The account is valid but the transaction amount is not supported.
|
|
388
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED = :valid_account_but_amount_not_supported
|
|
389
|
+
|
|
390
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
391
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
392
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
393
|
+
|
|
394
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
395
|
+
FORWARD_TO_ISSUER = :forward_to_issuer
|
|
396
|
+
|
|
397
|
+
# The card authentication process has failed.
|
|
398
|
+
CARD_AUTHENTICATION_FAILED = :card_authentication_failed
|
|
399
|
+
|
|
325
400
|
# @!method self.values
|
|
326
401
|
# @return [Array<Symbol>]
|
|
327
402
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -1182,6 +1182,13 @@ module Increase
|
|
|
1182
1182
|
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1183
1183
|
)
|
|
1184
1184
|
|
|
1185
|
+
# The transaction was blocked by the cardholder.
|
|
1186
|
+
BLOCKED_BY_CARDHOLDER =
|
|
1187
|
+
T.let(
|
|
1188
|
+
:blocked_by_cardholder,
|
|
1189
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1190
|
+
)
|
|
1191
|
+
|
|
1185
1192
|
# The first use of the card has been blocked by the issuer.
|
|
1186
1193
|
BLOCKED_FIRST_USE =
|
|
1187
1194
|
T.let(
|
|
@@ -1280,6 +1287,167 @@ module Increase
|
|
|
1280
1287
|
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1281
1288
|
)
|
|
1282
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
|
+
# The data in the transaction is inconsistent with the original message.
|
|
1326
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE =
|
|
1327
|
+
T.let(
|
|
1328
|
+
:data_inconsistent_with_original_message,
|
|
1329
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1330
|
+
)
|
|
1331
|
+
|
|
1332
|
+
# An error was found with the PIN associated with the transaction.
|
|
1333
|
+
PIN_ERROR_FOUND =
|
|
1334
|
+
T.let(
|
|
1335
|
+
:pin_error_found,
|
|
1336
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1337
|
+
)
|
|
1338
|
+
|
|
1339
|
+
# The PIN associated with the transaction could not be verified.
|
|
1340
|
+
CANNOT_VERIFY_PIN =
|
|
1341
|
+
T.let(
|
|
1342
|
+
:cannot_verify_pin,
|
|
1343
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1344
|
+
)
|
|
1345
|
+
|
|
1346
|
+
# The verification data associated with the transaction has failed.
|
|
1347
|
+
VERIFICATION_DATA_FAILED =
|
|
1348
|
+
T.let(
|
|
1349
|
+
:verification_data_failed,
|
|
1350
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1351
|
+
)
|
|
1352
|
+
|
|
1353
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
1354
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
1355
|
+
T.let(
|
|
1356
|
+
:surcharge_amount_not_supported_by_debit_network_issuer,
|
|
1357
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1358
|
+
)
|
|
1359
|
+
|
|
1360
|
+
# Cash service is not available for this transaction.
|
|
1361
|
+
CASH_SERVICE_NOT_AVAILABLE =
|
|
1362
|
+
T.let(
|
|
1363
|
+
:cash_service_not_available,
|
|
1364
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1365
|
+
)
|
|
1366
|
+
|
|
1367
|
+
# The cashback request exceeds the issuer limit.
|
|
1368
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT =
|
|
1369
|
+
T.let(
|
|
1370
|
+
:cashback_request_exceeds_issuer_limit,
|
|
1371
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1372
|
+
)
|
|
1373
|
+
|
|
1374
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
1375
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
1376
|
+
T.let(
|
|
1377
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount,
|
|
1378
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1379
|
+
)
|
|
1380
|
+
|
|
1381
|
+
# The biller information provided is invalid.
|
|
1382
|
+
INVALID_BILLER_INFORMATION =
|
|
1383
|
+
T.let(
|
|
1384
|
+
:invalid_biller_information,
|
|
1385
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1386
|
+
)
|
|
1387
|
+
|
|
1388
|
+
# The PIN change request has been declined.
|
|
1389
|
+
PIN_CHANGE_REQUEST_DECLINED =
|
|
1390
|
+
T.let(
|
|
1391
|
+
:pin_change_request_declined,
|
|
1392
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1393
|
+
)
|
|
1394
|
+
|
|
1395
|
+
# The PIN provided is considered unsafe.
|
|
1396
|
+
UNSAFE_PIN =
|
|
1397
|
+
T.let(
|
|
1398
|
+
:unsafe_pin,
|
|
1399
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1400
|
+
)
|
|
1401
|
+
|
|
1402
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
1403
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN =
|
|
1404
|
+
T.let(
|
|
1405
|
+
:transaction_does_not_qualify_for_visa_pin,
|
|
1406
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1407
|
+
)
|
|
1408
|
+
|
|
1409
|
+
# The transaction was declined offline.
|
|
1410
|
+
OFFLINE_DECLINED =
|
|
1411
|
+
T.let(
|
|
1412
|
+
:offline_declined,
|
|
1413
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1414
|
+
)
|
|
1415
|
+
|
|
1416
|
+
# The terminal was unable to go online to process the transaction.
|
|
1417
|
+
UNABLE_TO_GO_ONLINE =
|
|
1418
|
+
T.let(
|
|
1419
|
+
:unable_to_go_online,
|
|
1420
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1421
|
+
)
|
|
1422
|
+
|
|
1423
|
+
# The account is valid but the transaction amount is not supported.
|
|
1424
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED =
|
|
1425
|
+
T.let(
|
|
1426
|
+
:valid_account_but_amount_not_supported,
|
|
1427
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1428
|
+
)
|
|
1429
|
+
|
|
1430
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
1431
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
1432
|
+
T.let(
|
|
1433
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt,
|
|
1434
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1435
|
+
)
|
|
1436
|
+
|
|
1437
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
1438
|
+
FORWARD_TO_ISSUER =
|
|
1439
|
+
T.let(
|
|
1440
|
+
:forward_to_issuer,
|
|
1441
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1442
|
+
)
|
|
1443
|
+
|
|
1444
|
+
# The card authentication process has failed.
|
|
1445
|
+
CARD_AUTHENTICATION_FAILED =
|
|
1446
|
+
T.let(
|
|
1447
|
+
:card_authentication_failed,
|
|
1448
|
+
Increase::CardPushTransfer::Decline::Reason::TaggedSymbol
|
|
1449
|
+
)
|
|
1450
|
+
|
|
1283
1451
|
sig do
|
|
1284
1452
|
override.returns(
|
|
1285
1453
|
T::Array[
|
|
@@ -1226,6 +1226,13 @@ module Increase
|
|
|
1226
1226
|
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1227
1227
|
)
|
|
1228
1228
|
|
|
1229
|
+
# The transaction was blocked by the cardholder.
|
|
1230
|
+
BLOCKED_BY_CARDHOLDER =
|
|
1231
|
+
T.let(
|
|
1232
|
+
:blocked_by_cardholder,
|
|
1233
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1234
|
+
)
|
|
1235
|
+
|
|
1229
1236
|
# The first use of the card has been blocked by the issuer.
|
|
1230
1237
|
BLOCKED_FIRST_USE =
|
|
1231
1238
|
T.let(
|
|
@@ -1324,6 +1331,167 @@ module Increase
|
|
|
1324
1331
|
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1325
1332
|
)
|
|
1326
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
|
+
# The data in the transaction is inconsistent with the original message.
|
|
1370
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE =
|
|
1371
|
+
T.let(
|
|
1372
|
+
:data_inconsistent_with_original_message,
|
|
1373
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1374
|
+
)
|
|
1375
|
+
|
|
1376
|
+
# An error was found with the PIN associated with the transaction.
|
|
1377
|
+
PIN_ERROR_FOUND =
|
|
1378
|
+
T.let(
|
|
1379
|
+
:pin_error_found,
|
|
1380
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1381
|
+
)
|
|
1382
|
+
|
|
1383
|
+
# The PIN associated with the transaction could not be verified.
|
|
1384
|
+
CANNOT_VERIFY_PIN =
|
|
1385
|
+
T.let(
|
|
1386
|
+
:cannot_verify_pin,
|
|
1387
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1388
|
+
)
|
|
1389
|
+
|
|
1390
|
+
# The verification data associated with the transaction has failed.
|
|
1391
|
+
VERIFICATION_DATA_FAILED =
|
|
1392
|
+
T.let(
|
|
1393
|
+
:verification_data_failed,
|
|
1394
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1395
|
+
)
|
|
1396
|
+
|
|
1397
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
1398
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
1399
|
+
T.let(
|
|
1400
|
+
:surcharge_amount_not_supported_by_debit_network_issuer,
|
|
1401
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1402
|
+
)
|
|
1403
|
+
|
|
1404
|
+
# Cash service is not available for this transaction.
|
|
1405
|
+
CASH_SERVICE_NOT_AVAILABLE =
|
|
1406
|
+
T.let(
|
|
1407
|
+
:cash_service_not_available,
|
|
1408
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1409
|
+
)
|
|
1410
|
+
|
|
1411
|
+
# The cashback request exceeds the issuer limit.
|
|
1412
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT =
|
|
1413
|
+
T.let(
|
|
1414
|
+
:cashback_request_exceeds_issuer_limit,
|
|
1415
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1416
|
+
)
|
|
1417
|
+
|
|
1418
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
1419
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
1420
|
+
T.let(
|
|
1421
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount,
|
|
1422
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1423
|
+
)
|
|
1424
|
+
|
|
1425
|
+
# The biller information provided is invalid.
|
|
1426
|
+
INVALID_BILLER_INFORMATION =
|
|
1427
|
+
T.let(
|
|
1428
|
+
:invalid_biller_information,
|
|
1429
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1430
|
+
)
|
|
1431
|
+
|
|
1432
|
+
# The PIN change request has been declined.
|
|
1433
|
+
PIN_CHANGE_REQUEST_DECLINED =
|
|
1434
|
+
T.let(
|
|
1435
|
+
:pin_change_request_declined,
|
|
1436
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1437
|
+
)
|
|
1438
|
+
|
|
1439
|
+
# The PIN provided is considered unsafe.
|
|
1440
|
+
UNSAFE_PIN =
|
|
1441
|
+
T.let(
|
|
1442
|
+
:unsafe_pin,
|
|
1443
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1444
|
+
)
|
|
1445
|
+
|
|
1446
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
1447
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN =
|
|
1448
|
+
T.let(
|
|
1449
|
+
:transaction_does_not_qualify_for_visa_pin,
|
|
1450
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1451
|
+
)
|
|
1452
|
+
|
|
1453
|
+
# The transaction was declined offline.
|
|
1454
|
+
OFFLINE_DECLINED =
|
|
1455
|
+
T.let(
|
|
1456
|
+
:offline_declined,
|
|
1457
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1458
|
+
)
|
|
1459
|
+
|
|
1460
|
+
# The terminal was unable to go online to process the transaction.
|
|
1461
|
+
UNABLE_TO_GO_ONLINE =
|
|
1462
|
+
T.let(
|
|
1463
|
+
:unable_to_go_online,
|
|
1464
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1465
|
+
)
|
|
1466
|
+
|
|
1467
|
+
# The account is valid but the transaction amount is not supported.
|
|
1468
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED =
|
|
1469
|
+
T.let(
|
|
1470
|
+
:valid_account_but_amount_not_supported,
|
|
1471
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1472
|
+
)
|
|
1473
|
+
|
|
1474
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
1475
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
1476
|
+
T.let(
|
|
1477
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt,
|
|
1478
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1479
|
+
)
|
|
1480
|
+
|
|
1481
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
1482
|
+
FORWARD_TO_ISSUER =
|
|
1483
|
+
T.let(
|
|
1484
|
+
:forward_to_issuer,
|
|
1485
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1486
|
+
)
|
|
1487
|
+
|
|
1488
|
+
# The card authentication process has failed.
|
|
1489
|
+
CARD_AUTHENTICATION_FAILED =
|
|
1490
|
+
T.let(
|
|
1491
|
+
:card_authentication_failed,
|
|
1492
|
+
Increase::CardValidation::Decline::Reason::TaggedSymbol
|
|
1493
|
+
)
|
|
1494
|
+
|
|
1327
1495
|
sig do
|
|
1328
1496
|
override.returns(
|
|
1329
1497
|
T::Array[Increase::CardValidation::Decline::Reason::TaggedSymbol]
|
|
@@ -683,6 +683,13 @@ module Increase
|
|
|
683
683
|
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
684
684
|
)
|
|
685
685
|
|
|
686
|
+
# The transaction was blocked by the cardholder.
|
|
687
|
+
BLOCKED_BY_CARDHOLDER =
|
|
688
|
+
T.let(
|
|
689
|
+
:blocked_by_cardholder,
|
|
690
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
691
|
+
)
|
|
692
|
+
|
|
686
693
|
# The first use of the card has been blocked by the issuer.
|
|
687
694
|
BLOCKED_FIRST_USE =
|
|
688
695
|
T.let(
|
|
@@ -781,6 +788,167 @@ module Increase
|
|
|
781
788
|
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
782
789
|
)
|
|
783
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
|
+
# The data in the transaction is inconsistent with the original message.
|
|
827
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE =
|
|
828
|
+
T.let(
|
|
829
|
+
:data_inconsistent_with_original_message,
|
|
830
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
831
|
+
)
|
|
832
|
+
|
|
833
|
+
# An error was found with the PIN associated with the transaction.
|
|
834
|
+
PIN_ERROR_FOUND =
|
|
835
|
+
T.let(
|
|
836
|
+
:pin_error_found,
|
|
837
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
838
|
+
)
|
|
839
|
+
|
|
840
|
+
# The PIN associated with the transaction could not be verified.
|
|
841
|
+
CANNOT_VERIFY_PIN =
|
|
842
|
+
T.let(
|
|
843
|
+
:cannot_verify_pin,
|
|
844
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
845
|
+
)
|
|
846
|
+
|
|
847
|
+
# The verification data associated with the transaction has failed.
|
|
848
|
+
VERIFICATION_DATA_FAILED =
|
|
849
|
+
T.let(
|
|
850
|
+
:verification_data_failed,
|
|
851
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
852
|
+
)
|
|
853
|
+
|
|
854
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
855
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER =
|
|
856
|
+
T.let(
|
|
857
|
+
:surcharge_amount_not_supported_by_debit_network_issuer,
|
|
858
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
859
|
+
)
|
|
860
|
+
|
|
861
|
+
# Cash service is not available for this transaction.
|
|
862
|
+
CASH_SERVICE_NOT_AVAILABLE =
|
|
863
|
+
T.let(
|
|
864
|
+
:cash_service_not_available,
|
|
865
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
866
|
+
)
|
|
867
|
+
|
|
868
|
+
# The cashback request exceeds the issuer limit.
|
|
869
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT =
|
|
870
|
+
T.let(
|
|
871
|
+
:cashback_request_exceeds_issuer_limit,
|
|
872
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
873
|
+
)
|
|
874
|
+
|
|
875
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
876
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT =
|
|
877
|
+
T.let(
|
|
878
|
+
:transaction_amount_exceeds_pre_authorized_approval_amount,
|
|
879
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
880
|
+
)
|
|
881
|
+
|
|
882
|
+
# The biller information provided is invalid.
|
|
883
|
+
INVALID_BILLER_INFORMATION =
|
|
884
|
+
T.let(
|
|
885
|
+
:invalid_biller_information,
|
|
886
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
887
|
+
)
|
|
888
|
+
|
|
889
|
+
# The PIN change request has been declined.
|
|
890
|
+
PIN_CHANGE_REQUEST_DECLINED =
|
|
891
|
+
T.let(
|
|
892
|
+
:pin_change_request_declined,
|
|
893
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
894
|
+
)
|
|
895
|
+
|
|
896
|
+
# The PIN provided is considered unsafe.
|
|
897
|
+
UNSAFE_PIN =
|
|
898
|
+
T.let(
|
|
899
|
+
:unsafe_pin,
|
|
900
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
901
|
+
)
|
|
902
|
+
|
|
903
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
904
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN =
|
|
905
|
+
T.let(
|
|
906
|
+
:transaction_does_not_qualify_for_visa_pin,
|
|
907
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
908
|
+
)
|
|
909
|
+
|
|
910
|
+
# The transaction was declined offline.
|
|
911
|
+
OFFLINE_DECLINED =
|
|
912
|
+
T.let(
|
|
913
|
+
:offline_declined,
|
|
914
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
915
|
+
)
|
|
916
|
+
|
|
917
|
+
# The terminal was unable to go online to process the transaction.
|
|
918
|
+
UNABLE_TO_GO_ONLINE =
|
|
919
|
+
T.let(
|
|
920
|
+
:unable_to_go_online,
|
|
921
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
922
|
+
)
|
|
923
|
+
|
|
924
|
+
# The account is valid but the transaction amount is not supported.
|
|
925
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED =
|
|
926
|
+
T.let(
|
|
927
|
+
:valid_account_but_amount_not_supported,
|
|
928
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
929
|
+
)
|
|
930
|
+
|
|
931
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
932
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT =
|
|
933
|
+
T.let(
|
|
934
|
+
:invalid_use_of_merchant_category_code_correct_and_reattempt,
|
|
935
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
936
|
+
)
|
|
937
|
+
|
|
938
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
939
|
+
FORWARD_TO_ISSUER =
|
|
940
|
+
T.let(
|
|
941
|
+
:forward_to_issuer,
|
|
942
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
943
|
+
)
|
|
944
|
+
|
|
945
|
+
# The card authentication process has failed.
|
|
946
|
+
CARD_AUTHENTICATION_FAILED =
|
|
947
|
+
T.let(
|
|
948
|
+
:card_authentication_failed,
|
|
949
|
+
Increase::Simulations::CardTokenCreateParams::Outcome::Decline::Reason::TaggedSymbol
|
|
950
|
+
)
|
|
951
|
+
|
|
784
952
|
sig do
|
|
785
953
|
override.returns(
|
|
786
954
|
T::Array[
|
|
@@ -430,6 +430,7 @@ module Increase
|
|
|
430
430
|
| :restricted_card
|
|
431
431
|
| :security_violation
|
|
432
432
|
| :transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
433
|
+
| :blocked_by_cardholder
|
|
433
434
|
| :blocked_first_use
|
|
434
435
|
| :credit_issuer_unavailable
|
|
435
436
|
| :negative_card_verification_value_results
|
|
@@ -444,6 +445,29 @@ module Increase
|
|
|
444
445
|
| :stop_payment_order
|
|
445
446
|
| :revocation_of_authorization_order
|
|
446
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
|
+
| :data_inconsistent_with_original_message
|
|
454
|
+
| :pin_error_found
|
|
455
|
+
| :cannot_verify_pin
|
|
456
|
+
| :verification_data_failed
|
|
457
|
+
| :surcharge_amount_not_supported_by_debit_network_issuer
|
|
458
|
+
| :cash_service_not_available
|
|
459
|
+
| :cashback_request_exceeds_issuer_limit
|
|
460
|
+
| :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
461
|
+
| :invalid_biller_information
|
|
462
|
+
| :pin_change_request_declined
|
|
463
|
+
| :unsafe_pin
|
|
464
|
+
| :transaction_does_not_qualify_for_visa_pin
|
|
465
|
+
| :offline_declined
|
|
466
|
+
| :unable_to_go_online
|
|
467
|
+
| :valid_account_but_amount_not_supported
|
|
468
|
+
| :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
469
|
+
| :forward_to_issuer
|
|
470
|
+
| :card_authentication_failed
|
|
447
471
|
|
|
448
472
|
module Reason
|
|
449
473
|
extend Increase::Internal::Type::Enum
|
|
@@ -535,6 +559,9 @@ module Increase
|
|
|
535
559
|
# The transaction does not meet the anti-money laundering requirements set by the issuer.
|
|
536
560
|
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
537
561
|
|
|
562
|
+
# The transaction was blocked by the cardholder.
|
|
563
|
+
BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
|
|
564
|
+
|
|
538
565
|
# The first use of the card has been blocked by the issuer.
|
|
539
566
|
BLOCKED_FIRST_USE: :blocked_first_use
|
|
540
567
|
|
|
@@ -577,6 +604,75 @@ module Increase
|
|
|
577
604
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
578
605
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
579
606
|
|
|
607
|
+
# The record associated with the transaction could not be located.
|
|
608
|
+
UNABLE_TO_LOCATE_RECORD: :unable_to_locate_record
|
|
609
|
+
|
|
610
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
611
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE: :file_is_temporarily_unavailable
|
|
612
|
+
|
|
613
|
+
# The PIN entered for the transaction is incorrect.
|
|
614
|
+
INCORRECT_PIN: :incorrect_pin
|
|
615
|
+
|
|
616
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
617
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED: :allowable_number_of_pin_entry_tries_exceeded
|
|
618
|
+
|
|
619
|
+
# The previous message associated with the transaction could not be located.
|
|
620
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE: :unable_to_locate_previous_message
|
|
621
|
+
|
|
622
|
+
# The data in the transaction is inconsistent with the original message.
|
|
623
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE: :data_inconsistent_with_original_message
|
|
624
|
+
|
|
625
|
+
# An error was found with the PIN associated with the transaction.
|
|
626
|
+
PIN_ERROR_FOUND: :pin_error_found
|
|
627
|
+
|
|
628
|
+
# The PIN associated with the transaction could not be verified.
|
|
629
|
+
CANNOT_VERIFY_PIN: :cannot_verify_pin
|
|
630
|
+
|
|
631
|
+
# The verification data associated with the transaction has failed.
|
|
632
|
+
VERIFICATION_DATA_FAILED: :verification_data_failed
|
|
633
|
+
|
|
634
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
635
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER: :surcharge_amount_not_supported_by_debit_network_issuer
|
|
636
|
+
|
|
637
|
+
# Cash service is not available for this transaction.
|
|
638
|
+
CASH_SERVICE_NOT_AVAILABLE: :cash_service_not_available
|
|
639
|
+
|
|
640
|
+
# The cashback request exceeds the issuer limit.
|
|
641
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT: :cashback_request_exceeds_issuer_limit
|
|
642
|
+
|
|
643
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
644
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT: :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
645
|
+
|
|
646
|
+
# The biller information provided is invalid.
|
|
647
|
+
INVALID_BILLER_INFORMATION: :invalid_biller_information
|
|
648
|
+
|
|
649
|
+
# The PIN change request has been declined.
|
|
650
|
+
PIN_CHANGE_REQUEST_DECLINED: :pin_change_request_declined
|
|
651
|
+
|
|
652
|
+
# The PIN provided is considered unsafe.
|
|
653
|
+
UNSAFE_PIN: :unsafe_pin
|
|
654
|
+
|
|
655
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
656
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN: :transaction_does_not_qualify_for_visa_pin
|
|
657
|
+
|
|
658
|
+
# The transaction was declined offline.
|
|
659
|
+
OFFLINE_DECLINED: :offline_declined
|
|
660
|
+
|
|
661
|
+
# The terminal was unable to go online to process the transaction.
|
|
662
|
+
UNABLE_TO_GO_ONLINE: :unable_to_go_online
|
|
663
|
+
|
|
664
|
+
# The account is valid but the transaction amount is not supported.
|
|
665
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED: :valid_account_but_amount_not_supported
|
|
666
|
+
|
|
667
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
668
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT: :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
669
|
+
|
|
670
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
671
|
+
FORWARD_TO_ISSUER: :forward_to_issuer
|
|
672
|
+
|
|
673
|
+
# The card authentication process has failed.
|
|
674
|
+
CARD_AUTHENTICATION_FAILED: :card_authentication_failed
|
|
675
|
+
|
|
580
676
|
def self?.values: -> ::Array[Increase::Models::CardPushTransfer::Decline::reason]
|
|
581
677
|
end
|
|
582
678
|
end
|
|
@@ -428,6 +428,7 @@ module Increase
|
|
|
428
428
|
| :restricted_card
|
|
429
429
|
| :security_violation
|
|
430
430
|
| :transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
431
|
+
| :blocked_by_cardholder
|
|
431
432
|
| :blocked_first_use
|
|
432
433
|
| :credit_issuer_unavailable
|
|
433
434
|
| :negative_card_verification_value_results
|
|
@@ -442,6 +443,29 @@ module Increase
|
|
|
442
443
|
| :stop_payment_order
|
|
443
444
|
| :revocation_of_authorization_order
|
|
444
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
|
+
| :data_inconsistent_with_original_message
|
|
452
|
+
| :pin_error_found
|
|
453
|
+
| :cannot_verify_pin
|
|
454
|
+
| :verification_data_failed
|
|
455
|
+
| :surcharge_amount_not_supported_by_debit_network_issuer
|
|
456
|
+
| :cash_service_not_available
|
|
457
|
+
| :cashback_request_exceeds_issuer_limit
|
|
458
|
+
| :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
459
|
+
| :invalid_biller_information
|
|
460
|
+
| :pin_change_request_declined
|
|
461
|
+
| :unsafe_pin
|
|
462
|
+
| :transaction_does_not_qualify_for_visa_pin
|
|
463
|
+
| :offline_declined
|
|
464
|
+
| :unable_to_go_online
|
|
465
|
+
| :valid_account_but_amount_not_supported
|
|
466
|
+
| :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
467
|
+
| :forward_to_issuer
|
|
468
|
+
| :card_authentication_failed
|
|
445
469
|
|
|
446
470
|
module Reason
|
|
447
471
|
extend Increase::Internal::Type::Enum
|
|
@@ -533,6 +557,9 @@ module Increase
|
|
|
533
557
|
# The transaction does not meet the anti-money laundering requirements set by the issuer.
|
|
534
558
|
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
535
559
|
|
|
560
|
+
# The transaction was blocked by the cardholder.
|
|
561
|
+
BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
|
|
562
|
+
|
|
536
563
|
# The first use of the card has been blocked by the issuer.
|
|
537
564
|
BLOCKED_FIRST_USE: :blocked_first_use
|
|
538
565
|
|
|
@@ -575,6 +602,75 @@ module Increase
|
|
|
575
602
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
576
603
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
577
604
|
|
|
605
|
+
# The record associated with the transaction could not be located.
|
|
606
|
+
UNABLE_TO_LOCATE_RECORD: :unable_to_locate_record
|
|
607
|
+
|
|
608
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
609
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE: :file_is_temporarily_unavailable
|
|
610
|
+
|
|
611
|
+
# The PIN entered for the transaction is incorrect.
|
|
612
|
+
INCORRECT_PIN: :incorrect_pin
|
|
613
|
+
|
|
614
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
615
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED: :allowable_number_of_pin_entry_tries_exceeded
|
|
616
|
+
|
|
617
|
+
# The previous message associated with the transaction could not be located.
|
|
618
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE: :unable_to_locate_previous_message
|
|
619
|
+
|
|
620
|
+
# The data in the transaction is inconsistent with the original message.
|
|
621
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE: :data_inconsistent_with_original_message
|
|
622
|
+
|
|
623
|
+
# An error was found with the PIN associated with the transaction.
|
|
624
|
+
PIN_ERROR_FOUND: :pin_error_found
|
|
625
|
+
|
|
626
|
+
# The PIN associated with the transaction could not be verified.
|
|
627
|
+
CANNOT_VERIFY_PIN: :cannot_verify_pin
|
|
628
|
+
|
|
629
|
+
# The verification data associated with the transaction has failed.
|
|
630
|
+
VERIFICATION_DATA_FAILED: :verification_data_failed
|
|
631
|
+
|
|
632
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
633
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER: :surcharge_amount_not_supported_by_debit_network_issuer
|
|
634
|
+
|
|
635
|
+
# Cash service is not available for this transaction.
|
|
636
|
+
CASH_SERVICE_NOT_AVAILABLE: :cash_service_not_available
|
|
637
|
+
|
|
638
|
+
# The cashback request exceeds the issuer limit.
|
|
639
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT: :cashback_request_exceeds_issuer_limit
|
|
640
|
+
|
|
641
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
642
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT: :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
643
|
+
|
|
644
|
+
# The biller information provided is invalid.
|
|
645
|
+
INVALID_BILLER_INFORMATION: :invalid_biller_information
|
|
646
|
+
|
|
647
|
+
# The PIN change request has been declined.
|
|
648
|
+
PIN_CHANGE_REQUEST_DECLINED: :pin_change_request_declined
|
|
649
|
+
|
|
650
|
+
# The PIN provided is considered unsafe.
|
|
651
|
+
UNSAFE_PIN: :unsafe_pin
|
|
652
|
+
|
|
653
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
654
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN: :transaction_does_not_qualify_for_visa_pin
|
|
655
|
+
|
|
656
|
+
# The transaction was declined offline.
|
|
657
|
+
OFFLINE_DECLINED: :offline_declined
|
|
658
|
+
|
|
659
|
+
# The terminal was unable to go online to process the transaction.
|
|
660
|
+
UNABLE_TO_GO_ONLINE: :unable_to_go_online
|
|
661
|
+
|
|
662
|
+
# The account is valid but the transaction amount is not supported.
|
|
663
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED: :valid_account_but_amount_not_supported
|
|
664
|
+
|
|
665
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
666
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT: :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
667
|
+
|
|
668
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
669
|
+
FORWARD_TO_ISSUER: :forward_to_issuer
|
|
670
|
+
|
|
671
|
+
# The card authentication process has failed.
|
|
672
|
+
CARD_AUTHENTICATION_FAILED: :card_authentication_failed
|
|
673
|
+
|
|
578
674
|
def self?.values: -> ::Array[Increase::Models::CardValidation::Decline::reason]
|
|
579
675
|
end
|
|
580
676
|
end
|
|
@@ -222,6 +222,7 @@ module Increase
|
|
|
222
222
|
| :restricted_card
|
|
223
223
|
| :security_violation
|
|
224
224
|
| :transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
225
|
+
| :blocked_by_cardholder
|
|
225
226
|
| :blocked_first_use
|
|
226
227
|
| :credit_issuer_unavailable
|
|
227
228
|
| :negative_card_verification_value_results
|
|
@@ -236,6 +237,29 @@ module Increase
|
|
|
236
237
|
| :stop_payment_order
|
|
237
238
|
| :revocation_of_authorization_order
|
|
238
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
|
+
| :data_inconsistent_with_original_message
|
|
246
|
+
| :pin_error_found
|
|
247
|
+
| :cannot_verify_pin
|
|
248
|
+
| :verification_data_failed
|
|
249
|
+
| :surcharge_amount_not_supported_by_debit_network_issuer
|
|
250
|
+
| :cash_service_not_available
|
|
251
|
+
| :cashback_request_exceeds_issuer_limit
|
|
252
|
+
| :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
253
|
+
| :invalid_biller_information
|
|
254
|
+
| :pin_change_request_declined
|
|
255
|
+
| :unsafe_pin
|
|
256
|
+
| :transaction_does_not_qualify_for_visa_pin
|
|
257
|
+
| :offline_declined
|
|
258
|
+
| :unable_to_go_online
|
|
259
|
+
| :valid_account_but_amount_not_supported
|
|
260
|
+
| :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
261
|
+
| :forward_to_issuer
|
|
262
|
+
| :card_authentication_failed
|
|
239
263
|
|
|
240
264
|
module Reason
|
|
241
265
|
extend Increase::Internal::Type::Enum
|
|
@@ -327,6 +351,9 @@ module Increase
|
|
|
327
351
|
# The transaction does not meet the anti-money laundering requirements set by the issuer.
|
|
328
352
|
TRANSACTION_DOES_NOT_FULFILL_ANTI_MONEY_LAUNDERING_REQUIREMENT: :transaction_does_not_fulfill_anti_money_laundering_requirement
|
|
329
353
|
|
|
354
|
+
# The transaction was blocked by the cardholder.
|
|
355
|
+
BLOCKED_BY_CARDHOLDER: :blocked_by_cardholder
|
|
356
|
+
|
|
330
357
|
# The first use of the card has been blocked by the issuer.
|
|
331
358
|
BLOCKED_FIRST_USE: :blocked_first_use
|
|
332
359
|
|
|
@@ -369,6 +396,75 @@ module Increase
|
|
|
369
396
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
370
397
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
371
398
|
|
|
399
|
+
# The record associated with the transaction could not be located.
|
|
400
|
+
UNABLE_TO_LOCATE_RECORD: :unable_to_locate_record
|
|
401
|
+
|
|
402
|
+
# The file needed for the transaction is temporarily unavailable.
|
|
403
|
+
FILE_IS_TEMPORARILY_UNAVAILABLE: :file_is_temporarily_unavailable
|
|
404
|
+
|
|
405
|
+
# The PIN entered for the transaction is incorrect.
|
|
406
|
+
INCORRECT_PIN: :incorrect_pin
|
|
407
|
+
|
|
408
|
+
# The allowable number of PIN entry tries has been exceeded.
|
|
409
|
+
ALLOWABLE_NUMBER_OF_PIN_ENTRY_TRIES_EXCEEDED: :allowable_number_of_pin_entry_tries_exceeded
|
|
410
|
+
|
|
411
|
+
# The previous message associated with the transaction could not be located.
|
|
412
|
+
UNABLE_TO_LOCATE_PREVIOUS_MESSAGE: :unable_to_locate_previous_message
|
|
413
|
+
|
|
414
|
+
# The data in the transaction is inconsistent with the original message.
|
|
415
|
+
DATA_INCONSISTENT_WITH_ORIGINAL_MESSAGE: :data_inconsistent_with_original_message
|
|
416
|
+
|
|
417
|
+
# An error was found with the PIN associated with the transaction.
|
|
418
|
+
PIN_ERROR_FOUND: :pin_error_found
|
|
419
|
+
|
|
420
|
+
# The PIN associated with the transaction could not be verified.
|
|
421
|
+
CANNOT_VERIFY_PIN: :cannot_verify_pin
|
|
422
|
+
|
|
423
|
+
# The verification data associated with the transaction has failed.
|
|
424
|
+
VERIFICATION_DATA_FAILED: :verification_data_failed
|
|
425
|
+
|
|
426
|
+
# The surcharge amount is not supported by the debit network issuer.
|
|
427
|
+
SURCHARGE_AMOUNT_NOT_SUPPORTED_BY_DEBIT_NETWORK_ISSUER: :surcharge_amount_not_supported_by_debit_network_issuer
|
|
428
|
+
|
|
429
|
+
# Cash service is not available for this transaction.
|
|
430
|
+
CASH_SERVICE_NOT_AVAILABLE: :cash_service_not_available
|
|
431
|
+
|
|
432
|
+
# The cashback request exceeds the issuer limit.
|
|
433
|
+
CASHBACK_REQUEST_EXCEEDS_ISSUER_LIMIT: :cashback_request_exceeds_issuer_limit
|
|
434
|
+
|
|
435
|
+
# The transaction amount exceeds the pre-authorized approval amount.
|
|
436
|
+
TRANSACTION_AMOUNT_EXCEEDS_PRE_AUTHORIZED_APPROVAL_AMOUNT: :transaction_amount_exceeds_pre_authorized_approval_amount
|
|
437
|
+
|
|
438
|
+
# The biller information provided is invalid.
|
|
439
|
+
INVALID_BILLER_INFORMATION: :invalid_biller_information
|
|
440
|
+
|
|
441
|
+
# The PIN change request has been declined.
|
|
442
|
+
PIN_CHANGE_REQUEST_DECLINED: :pin_change_request_declined
|
|
443
|
+
|
|
444
|
+
# The PIN provided is considered unsafe.
|
|
445
|
+
UNSAFE_PIN: :unsafe_pin
|
|
446
|
+
|
|
447
|
+
# The transaction does not qualify for Visa PIN processing.
|
|
448
|
+
TRANSACTION_DOES_NOT_QUALIFY_FOR_VISA_PIN: :transaction_does_not_qualify_for_visa_pin
|
|
449
|
+
|
|
450
|
+
# The transaction was declined offline.
|
|
451
|
+
OFFLINE_DECLINED: :offline_declined
|
|
452
|
+
|
|
453
|
+
# The terminal was unable to go online to process the transaction.
|
|
454
|
+
UNABLE_TO_GO_ONLINE: :unable_to_go_online
|
|
455
|
+
|
|
456
|
+
# The account is valid but the transaction amount is not supported.
|
|
457
|
+
VALID_ACCOUNT_BUT_AMOUNT_NOT_SUPPORTED: :valid_account_but_amount_not_supported
|
|
458
|
+
|
|
459
|
+
# The merchant category code was used incorrectly; correct it and reattempt the transaction.
|
|
460
|
+
INVALID_USE_OF_MERCHANT_CATEGORY_CODE_CORRECT_AND_REATTEMPT: :invalid_use_of_merchant_category_code_correct_and_reattempt
|
|
461
|
+
|
|
462
|
+
# The transaction should be forwarded to the issuer for processing.
|
|
463
|
+
FORWARD_TO_ISSUER: :forward_to_issuer
|
|
464
|
+
|
|
465
|
+
# The card authentication process has failed.
|
|
466
|
+
CARD_AUTHENTICATION_FAILED: :card_authentication_failed
|
|
467
|
+
|
|
372
468
|
def self?.values: -> ::Array[Increase::Models::Simulations::CardTokenCreateParams::Outcome::Decline::reason]
|
|
373
469
|
end
|
|
374
470
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: increase
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.260.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Increase
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-03-
|
|
11
|
+
date: 2026-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cgi
|