UNPKG

@getopenpay/client

Version:

OpenPay API TypeScript SDK

27 lines (26 loc) 975 B
/** * 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 CouponDuration: { readonly Once: "once"; readonly Repeating: "repeating"; readonly Forever: "forever"; }; export type CouponDuration = typeof CouponDuration[keyof typeof CouponDuration]; export declare function instanceOfCouponDuration(value: any): boolean; export declare function CouponDurationFromJSON(json: any): CouponDuration; export declare function CouponDurationFromJSONTyped(json: any, ignoreDiscriminator: boolean): CouponDuration; export declare function CouponDurationToJSON(value?: CouponDuration | null): any; export declare function CouponDurationToJSONTyped(value: any, ignoreDiscriminator: boolean): CouponDuration;