UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

49 lines (48 loc) 1.4 kB
import { RemediatingAction } from "./remediatingAction"; import { VerificationErrorRecursive } from "./verificationErrorRecursive"; export declare class VerificationError { /** * The verification error code. */ "code"?: string; /** * The verification error message. */ "message"?: string; /** * The actions that you can take to resolve the verification error. */ "remediatingActions"?: Array<RemediatingAction>; /** * More granular information about the verification error. */ "subErrors"?: Array<VerificationErrorRecursive>; /** * The type of verification error. Possible values: **invalidInput**, **dataMissing**, and **pendingStatus**. */ "type"?: VerificationError.TypeEnum; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace VerificationError { enum TypeEnum { DataMissing = "dataMissing", InvalidInput = "invalidInput", PendingStatus = "pendingStatus" } }