UNPKG

@adyen/api-library

Version:

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

44 lines (43 loc) 923 B
export declare class Company { /** * The company website\'s home page. */ "homepage"?: string; /** * The company name. */ "name"?: string; /** * Registration number of the company. */ "registrationNumber"?: string; /** * Registry location of the company. */ "registryLocation"?: string; /** * Tax ID of the company. */ "taxId"?: string; /** * The company type. */ "type"?: 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(); }