@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
44 lines (43 loc) • 1.1 kB
TypeScript
export declare class FinancialReport {
/**
* The annual turnover of the business.
*/
"annualTurnover"?: string;
/**
* The balance sheet total of the business.
*/
"balanceSheetTotal"?: string;
/**
* The currency used for the annual turnover, balance sheet total, and net assets.
*/
"currencyOfFinancialData"?: string;
/**
* The date the financial data were provided, in YYYY-MM-DD format.
*/
"dateOfFinancialData": string;
/**
* The number of employees of the business.
*/
"employeeCount"?: string;
/**
* The net assets of the business.
*/
"netAssets"?: 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();
}