/** * 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 CouponDiscountType: { readonly Dollar: "$"; readonly Percent: "%"; }; export type CouponDiscountType = typeof CouponDiscountType[keyof typeof CouponDiscountType]; export declare function instanceOfCouponDiscountType(value: any): boolean; export declare function CouponDiscountTypeFromJSON(json: any): CouponDiscountType; export declare function CouponDiscountTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CouponDiscountType; export declare function CouponDiscountTypeToJSON(value?: CouponDiscountType | null): any; export declare function CouponDiscountTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CouponDiscountType;