UNPKG

@adyen/api-library

Version:

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

40 lines (39 loc) 1.01 kB
export declare class Balance { /** * The balance available for use. */ "available": number; /** * The sum of the transactions that have already been settled. */ "balance": number; /** * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes) of the balance. */ "currency": string; /** * The sum of the transactions that will be settled in the future. */ "pending"?: number; /** * The balance currently held in reserve. */ "reserved": number; 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(); }