UNPKG

@adyen/api-library

Version:

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

32 lines (31 loc) 820 B
export declare class AdditionalCommission { /** * Unique identifier of the balance account to which the additional commission is booked. */ "balanceAccountId"?: string; /** * A fixed commission fee, in minor units. */ "fixedAmount"?: number; /** * A variable commission fee, in basis points. */ "variablePercentage"?: 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(); }