/** * 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 DiscountValueType: { readonly FixedValue: "fixed_value"; readonly Percentage: "percentage"; }; export type DiscountValueType = typeof DiscountValueType[keyof typeof DiscountValueType]; export declare function instanceOfDiscountValueType(value: any): boolean; export declare function DiscountValueTypeFromJSON(json: any): DiscountValueType; export declare function DiscountValueTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DiscountValueType; export declare function DiscountValueTypeToJSON(value?: DiscountValueType | null): any; export declare function DiscountValueTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DiscountValueType;