/* * 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 OrganizationSortProperty = { CreatedAt: "created_at", MinusCreatedAt: "-created_at", Slug: "slug", MinusSlug: "-slug", Name: "name", MinusName: "-name", NextReviewThreshold: "next_review_threshold", MinusNextReviewThreshold: "-next_review_threshold", DaysInStatus: "days_in_status", MinusDaysInStatus: "-days_in_status", } as const; export type OrganizationSortProperty = ClosedEnum< typeof OrganizationSortProperty >; /** @internal */ export const OrganizationSortProperty$outboundSchema: z.ZodMiniEnum< typeof OrganizationSortProperty > = z.enum(OrganizationSortProperty);