@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
28 lines (27 loc) • 929 B
TypeScript
export declare class Moto {
/**
* Enable MOTO transactions.
*/
"enableMoto"?: boolean;
/**
* The maximum amount for MOTO transactions. You need to set the currency for this amount using the [`standalone.currencyCode`](https://docs.adyen.com/api-explorer/Management/1/patch/companies/(companyId)/terminalSettings#request-standalone-currencyCode) parameter. Do not enable standalone, unless you are using a standalone solution.
*/
"maxAmount"?: 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();
}