@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
37 lines (36 loc) • 1.08 kB
TypeScript
export declare class Duration {
/**
* The unit of time. You can only use **minutes** and **hours** if the `interval.type` is **sliding**. Possible values: **minutes**, **hours**, **days**, **weeks**, or **months**
*/
"unit"?: Duration.UnitEnum;
/**
* The length of time by the unit. For example, 5 days. The maximum duration is 90 days or an equivalent in other units. For example, 3 months.
*/
"value"?: 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();
}
export declare namespace Duration {
enum UnitEnum {
Days = "days",
Hours = "hours",
Minutes = "minutes",
Months = "months",
Weeks = "weeks"
}
}