@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
40 lines (39 loc) • 1.36 kB
TypeScript
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: {
[]: 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();
}