/** * 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 DiscountType: { readonly Shipping: "shipping"; readonly Subtotal: "subtotal"; readonly Product: "product"; }; export type DiscountType = typeof DiscountType[keyof typeof DiscountType]; export declare function instanceOfDiscountType(value: any): boolean; export declare function DiscountTypeFromJSON(json: any): DiscountType; export declare function DiscountTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): DiscountType; export declare function DiscountTypeToJSON(value?: DiscountType | null): any; export declare function DiscountTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): DiscountType;