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