@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
9 lines (8 loc) • 450 B
TypeScript
/**
* The status of Strong Customer Authentication (SCA). Possible values: * **notPerformed**: the requester was unable to successfully authenticate the request using SCA, or has an SCA exemption. * **pending**: the request is pending SCA authentication. * **performed**: the request is successfully authenticated using SCA.
*/
export declare enum ScaStatus {
NotPerformed = "notPerformed",
Pending = "pending",
Performed = "performed"
}