import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The type of order. This can specify whether it's a regular purchase, subscription, etc. */ export declare const OrderType: { readonly Recurring: "recurring"; readonly Onetime: "onetime"; }; /** * The type of order. This can specify whether it's a regular purchase, subscription, etc. */ export type OrderType = ClosedEnum; /** @internal */ export declare const OrderType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const OrderType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=ordertype.d.ts.map