@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
21 lines • 919 B
JavaScript
;
/*
* The version of the OpenAPI document: v2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit this class manually.
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ScaStatus = void 0;
/**
* 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.
*/
var ScaStatus;
(function (ScaStatus) {
ScaStatus["NotPerformed"] = "notPerformed";
ScaStatus["Pending"] = "pending";
ScaStatus["Performed"] = "performed";
})(ScaStatus = exports.ScaStatus || (exports.ScaStatus = {}));
//# sourceMappingURL=scaStatus.js.map