/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The gender represents the gender identity of a person. */ export const Gender = { Male: "male", Female: "female", Unisex: "unisex", Other: "other", NotSpecified: "not_specified", } as const; /** * The gender represents the gender identity of a person. */ export type Gender = ClosedEnum; /** @internal */ export const Gender$inboundSchema: z.ZodNativeEnum = z .nativeEnum(Gender); /** @internal */ export const Gender$outboundSchema: z.ZodNativeEnum = Gender$inboundSchema; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace Gender$ { /** @deprecated use `Gender$inboundSchema` instead. */ export const inboundSchema = Gender$inboundSchema; /** @deprecated use `Gender$outboundSchema` instead. */ export const outboundSchema = Gender$outboundSchema; }