@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
23 lines (22 loc) • 917 B
TypeScript
/**
* Possible values: * **Aborted** * **Busy** * **Cancel** * **DeviceOut** * **InsertedCard** * **InProgress** * **LoggedOut** * **MessageFormat** * **NotAllowed** * **NotFound** * **PaymentRestriction** * **Refusal** * **UnavailableDevice** * **UnavailableService** * **InvalidCard** * **UnreachableHost** * **WrongPIN**
*/
export declare enum ErrorCondition {
Aborted = "Aborted",
Busy = "Busy",
Cancel = "Cancel",
DeviceOut = "DeviceOut",
InsertedCard = "InsertedCard",
InProgress = "InProgress",
LoggedOut = "LoggedOut",
MessageFormat = "MessageFormat",
NotAllowed = "NotAllowed",
NotFound = "NotFound",
PaymentRestriction = "PaymentRestriction",
Refusal = "Refusal",
UnavailableDevice = "UnavailableDevice",
UnavailableService = "UnavailableService",
InvalidCard = "InvalidCard",
UnreachableHost = "UnreachableHost",
WrongPin = "WrongPIN"
}