import { PaymentValidationsNameResultRawResponse } from "./paymentValidationsNameResultRawResponse"; import { PaymentValidationsNameResultResponse } from "./paymentValidationsNameResultResponse"; export declare class PaymentValidationsNameResponse { "rawResponse"?: PaymentValidationsNameResultRawResponse | null; "result"?: PaymentValidationsNameResultResponse | null; /** * Informs you if the name validation was performed. Possible values: **performed**, **notPerformed**, **notSupported** */ "status"?: PaymentValidationsNameResponse.StatusEnum; 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 PaymentValidationsNameResponse { enum StatusEnum { NotPerformed = "notPerformed", NotSupported = "notSupported", Performed = "performed" } }