increase 1.259.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 +8 -0
- data/README.md +1 -1
- data/lib/increase/models/card_push_transfer.rb +72 -0
- data/lib/increase/models/card_validation.rb +72 -0
- data/lib/increase/models/simulations/card_token_create_params.rb +72 -0
- data/lib/increase/version.rb +1 -1
- data/rbi/increase/models/card_push_transfer.rbi +161 -0
- data/rbi/increase/models/card_validation.rbi +161 -0
- data/rbi/increase/models/simulations/card_token_create_params.rbi +161 -0
- data/sig/increase/models/card_push_transfer.rbs +92 -0
- data/sig/increase/models/card_validation.rbs +92 -0
- data/sig/increase/models/simulations/card_token_create_params.rbs +92 -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: 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,13 @@
|
|
|
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
|
+
|
|
3
11
|
## 1.259.0 (2026-03-18)
|
|
4
12
|
|
|
5
13
|
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,78 @@ 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
|
+
# 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
|
+
|
|
720
792
|
# @!method self.values
|
|
721
793
|
# @return [Array<Symbol>]
|
|
722
794
|
end
|
|
@@ -697,6 +697,78 @@ 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
|
+
# 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
|
+
|
|
700
772
|
# @!method self.values
|
|
701
773
|
# @return [Array<Symbol>]
|
|
702
774
|
end
|
|
@@ -325,6 +325,78 @@ 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
|
+
# 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
|
+
|
|
328
400
|
# @!method self.values
|
|
329
401
|
# @return [Array<Symbol>]
|
|
330
402
|
end
|
data/lib/increase/version.rb
CHANGED
|
@@ -1287,6 +1287,167 @@ 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
|
+
# 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
|
+
|
|
1290
1451
|
sig do
|
|
1291
1452
|
override.returns(
|
|
1292
1453
|
T::Array[
|
|
@@ -1331,6 +1331,167 @@ 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
|
+
# 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
|
+
|
|
1334
1495
|
sig do
|
|
1335
1496
|
override.returns(
|
|
1336
1497
|
T::Array[Increase::CardValidation::Decline::Reason::TaggedSymbol]
|
|
@@ -788,6 +788,167 @@ 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
|
+
# 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
|
+
|
|
791
952
|
sig do
|
|
792
953
|
override.returns(
|
|
793
954
|
T::Array[
|
|
@@ -445,6 +445,29 @@ 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
|
+
| :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
|
|
448
471
|
|
|
449
472
|
module Reason
|
|
450
473
|
extend Increase::Internal::Type::Enum
|
|
@@ -581,6 +604,75 @@ module Increase
|
|
|
581
604
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
582
605
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
583
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
|
+
|
|
584
676
|
def self?.values: -> ::Array[Increase::Models::CardPushTransfer::Decline::reason]
|
|
585
677
|
end
|
|
586
678
|
end
|
|
@@ -443,6 +443,29 @@ 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
|
+
| :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
|
|
446
469
|
|
|
447
470
|
module Reason
|
|
448
471
|
extend Increase::Internal::Type::Enum
|
|
@@ -579,6 +602,75 @@ module Increase
|
|
|
579
602
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
580
603
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
581
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
|
+
|
|
582
674
|
def self?.values: -> ::Array[Increase::Models::CardValidation::Decline::reason]
|
|
583
675
|
end
|
|
584
676
|
end
|
|
@@ -237,6 +237,29 @@ 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
|
+
| :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
|
|
240
263
|
|
|
241
264
|
module Reason
|
|
242
265
|
extend Increase::Internal::Type::Enum
|
|
@@ -373,6 +396,75 @@ module Increase
|
|
|
373
396
|
# An order has been placed to revoke all authorizations for this cardholder.
|
|
374
397
|
REVOCATION_OF_ALL_AUTHORIZATIONS_ORDER: :revocation_of_all_authorizations_order
|
|
375
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
|
+
|
|
376
468
|
def self?.values: -> ::Array[Increase::Models::Simulations::CardTokenCreateParams::Outcome::Decline::reason]
|
|
377
469
|
end
|
|
378
470
|
end
|