@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
63 lines • 1.81 kB
JavaScript
;
/*
* The version of the OpenAPI document: v3
*
*
* 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.VerificationError = void 0;
class VerificationError {
static getAttributeTypeMap() {
return VerificationError.attributeTypeMap;
}
constructor() {
}
}
exports.VerificationError = VerificationError;
VerificationError.discriminator = undefined;
VerificationError.mapping = undefined;
VerificationError.attributeTypeMap = [
{
"name": "code",
"baseName": "code",
"type": "string",
"format": ""
},
{
"name": "message",
"baseName": "message",
"type": "string",
"format": ""
},
{
"name": "remediatingActions",
"baseName": "remediatingActions",
"type": "Array<RemediatingAction>",
"format": ""
},
{
"name": "subErrors",
"baseName": "subErrors",
"type": "Array<VerificationErrorRecursive>",
"format": ""
},
{
"name": "type",
"baseName": "type",
"type": "VerificationError.TypeEnum",
"format": ""
}
];
(function (VerificationError) {
let TypeEnum;
(function (TypeEnum) {
TypeEnum["DataMissing"] = "dataMissing";
TypeEnum["DataReview"] = "dataReview";
TypeEnum["InvalidInput"] = "invalidInput";
TypeEnum["PendingStatus"] = "pendingStatus";
})(TypeEnum = VerificationError.TypeEnum || (VerificationError.TypeEnum = {}));
})(VerificationError = exports.VerificationError || (exports.VerificationError = {}));
//# sourceMappingURL=verificationError.js.map