/* * 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 CustomerBenefitGrantSortProperty = { GrantedAt: "granted_at", MinusGrantedAt: "-granted_at", Type: "type", MinusType: "-type", Organization: "organization", MinusOrganization: "-organization", ProductBenefit: "product_benefit", MinusProductBenefit: "-product_benefit", } as const; export type CustomerBenefitGrantSortProperty = ClosedEnum< typeof CustomerBenefitGrantSortProperty >; /** @internal */ export const CustomerBenefitGrantSortProperty$outboundSchema: z.ZodMiniEnum< typeof CustomerBenefitGrantSortProperty > = z.enum(CustomerBenefitGrantSortProperty);