/* * 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 CustomerSortProperty = { CreatedAt: "created_at", MinusCreatedAt: "-created_at", Email: "email", MinusEmail: "-email", Name: "name", MinusName: "-name", } as const; export type CustomerSortProperty = ClosedEnum; /** @internal */ export const CustomerSortProperty$outboundSchema: z.ZodMiniEnum< typeof CustomerSortProperty > = z.enum(CustomerSortProperty);