UNPKG

@adyen/api-library

Version:

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

32 lines (31 loc) 896 B
export declare class Standalone { /** * The default currency of the standalone payment terminal as an [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) currency code. */ "currencyCode"?: string; /** * Indicates whether the tipping options specified in `gratuities` are enabled on the standalone terminal. */ "enableGratuities"?: boolean; /** * Enable standalone mode. */ "enableStandalone"?: boolean; 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(); }