UNPKG

@adyen/api-library

Version:

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

45 lines (44 loc) 1.26 kB
import { Address } from "./address"; import { BirthData } from "./birthData"; import { IdentificationData } from "./identificationData"; import { Name } from "./name"; import { PhoneNumber } from "./phoneNumber"; import { TaxInformation } from "./taxInformation"; import { WebData } from "./webData"; export declare class Individual { "birthData"?: BirthData | null; /** * The email address of the legal entity. */ "email"?: string; "identificationData"?: IdentificationData | null; "name": Name; /** * The individual\'s nationality. */ "nationality"?: string; "phone"?: PhoneNumber | null; "residentialAddress": Address; /** * The tax information of the individual. */ "taxInformation"?: Array<TaxInformation>; "webData"?: WebData | null; 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(); }