export declare class PaymentValidationsNameResultRawResponse { /** * The raw first name validation result that Adyen received from the scheme. First name validation result is only returned for Visa. */ "firstName"?: string; /** * The raw full name validation result that Adyen received from the scheme. Full name is the only field that is validated for Mastercard */ "fullName"?: string; /** * The raw last name validation result that Adyen received from the scheme. Last name validation result is only returned for Visa. */ "lastName"?: string; /** * The raw middle name validation result that Adyen received from the scheme. Middle name validation result is only returned for Visa. */ "middleName"?: string; /** * The raw name validation status value that Adyen received from the scheme. Only returned for Visa. */ "status"?: string; 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(); }