import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Billing period, required if billing_type is recurring */ export declare const ProductRequestBillingPeriod: { readonly Once: "once"; readonly EveryMonth: "every-month"; readonly EveryThreeMonths: "every-three-months"; readonly EverySixMonths: "every-six-months"; readonly EveryYear: "every-year"; }; /** * Billing period, required if billing_type is recurring */ export type ProductRequestBillingPeriod = ClosedEnum; /** @internal */ export declare const ProductRequestBillingPeriod$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ProductRequestBillingPeriod$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=productrequestbillingperiod.d.ts.map