UNPKG

@adyen/api-library

Version:

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

36 lines (35 loc) 1.08 kB
export declare class BalanceMutation { /** * The amount in the payment\'s currency that is debited or credited on the balance accounting register. */ "balance"?: number; /** * The three-character [ISO currency code](https://docs.adyen.com/development-resources/currency-codes). */ "currency"?: string; /** * The amount in the payment\'s currency that is debited or credited on the received accounting register. */ "received"?: number; /** * The amount in the payment\'s currency that is debited or credited on the reserved accounting register. */ "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(); }