UNPKG

@adyen/api-library

Version:

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

27 lines (26 loc) 775 B
import { Configuration } from './configuration'; export declare class Surcharge { /** * Show the surcharge details on the terminal, so the shopper can confirm. */ 'askConfirmation'?: boolean; /** * Surcharge fees or percentages for specific cards, funding sources (credit or debit), and currencies. */ 'configurations'?: Array<Configuration>; /** * Exclude the tip amount from the surcharge calculation. */ 'excludeGratuityFromSurcharge'?: boolean; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }