@getopenpay/client
Version:
OpenPay API TypeScript SDK
28 lines (27 loc) • 1.06 kB
TypeScript
/**
* OpenPay API
* super charge your subscription management.
*
* The version of the OpenAPI document: 1.2.1
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
*/
export declare const CalendarIntervalEnum: {
readonly Day: "day";
readonly Week: "week";
readonly Month: "month";
readonly Year: "year";
};
export type CalendarIntervalEnum = typeof CalendarIntervalEnum[keyof typeof CalendarIntervalEnum];
export declare function instanceOfCalendarIntervalEnum(value: any): boolean;
export declare function CalendarIntervalEnumFromJSON(json: any): CalendarIntervalEnum;
export declare function CalendarIntervalEnumFromJSONTyped(json: any, ignoreDiscriminator: boolean): CalendarIntervalEnum;
export declare function CalendarIntervalEnumToJSON(value?: CalendarIntervalEnum | null): any;
export declare function CalendarIntervalEnumToJSONTyped(value: any, ignoreDiscriminator: boolean): CalendarIntervalEnum;