/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export const CustomerOrderSortProperty = { CreatedAt: "created_at", MinusCreatedAt: "-created_at", Amount: "amount", MinusAmount: "-amount", NetAmount: "net_amount", MinusNetAmount: "-net_amount", Product: "product", MinusProduct: "-product", Subscription: "subscription", MinusSubscription: "-subscription", } as const; export type CustomerOrderSortProperty = ClosedEnum< typeof CustomerOrderSortProperty >; /** @internal */ export const CustomerOrderSortProperty$outboundSchema: z.ZodMiniEnum< typeof CustomerOrderSortProperty > = z.enum(CustomerOrderSortProperty);