/* * 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 CustomerWalletSortProperty = { CreatedAt: "created_at", MinusCreatedAt: "-created_at", Balance: "balance", MinusBalance: "-balance", } as const; export type CustomerWalletSortProperty = ClosedEnum< typeof CustomerWalletSortProperty >; /** @internal */ export const CustomerWalletSortProperty$outboundSchema: z.ZodMiniEnum< typeof CustomerWalletSortProperty > = z.enum(CustomerWalletSortProperty);