@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
31 lines (30 loc) • 974 B
TypeScript
import { MinorUnitsMonetaryValue } from "./minorUnitsMonetaryValue";
import { SupportedCardTypes } from "./supportedCardTypes";
export declare class StoreAndForward {
/**
* The maximum amount that the terminal accepts for a single store-and-forward payment.
*/
"maxAmount"?: Array<MinorUnitsMonetaryValue>;
/**
* The maximum number of store-and-forward transactions per terminal that you can process while offline.
*/
"maxPayments"?: number;
"supportedCardTypes"?: SupportedCardTypes | null;
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();
}