/** * My API * API documentation for my Laravel app * * The version of the OpenAPI document: 1.0.0 * * * 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 CouponType: { readonly Subtotal: "subtotal"; readonly Product: "product"; readonly Shipping: "shipping"; }; export type CouponType = typeof CouponType[keyof typeof CouponType]; export declare function instanceOfCouponType(value: any): boolean; export declare function CouponTypeFromJSON(json: any): CouponType; export declare function CouponTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CouponType; export declare function CouponTypeToJSON(value?: CouponType | null): any; export declare function CouponTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CouponType;