import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of the discount, either "percentage" or "fixed". */ export declare const DiscountType: { readonly Percentage: "percentage"; readonly Fixed: "fixed"; }; /** * The type of the discount, either "percentage" or "fixed". */ export type DiscountType = ClosedEnum; /** @internal */ export declare const DiscountType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const DiscountType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=discounttype.d.ts.map