@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
27 lines (26 loc) • 944 B
TypeScript
import { PersonalDocumentData } from './personalDocumentData';
export declare class ViasPersonalData {
/**
* The person\'s date of birth, in ISO-8601 YYYY-MM-DD format. For example, **2000-01-31**.
*/
'dateOfBirth'?: string;
/**
* Array that contains information about the person\'s identification document. You can submit only one entry per document type.
*/
'documentData'?: Array<PersonalDocumentData>;
/**
* The nationality of the person represented by a two-character country code, in [ISO 3166-1 alpha-2](https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2) format. For example, **NL**.
*/
'nationality'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}