@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
33 lines (32 loc) • 943 B
TypeScript
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 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();
}