/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The employment status of the employee, indicating whether they are currently employed, inactive, terminated, or in another status. */ export const EmploymentStatus = { Active: "active", Inactive: "inactive", Terminated: "terminated", Other: "other", } as const; /** * The employment status of the employee, indicating whether they are currently employed, inactive, terminated, or in another status. */ export type EmploymentStatus = ClosedEnum; /** @internal */ export const EmploymentStatus$inboundSchema: z.ZodNativeEnum< typeof EmploymentStatus > = z.nativeEnum(EmploymentStatus); /** @internal */ export const EmploymentStatus$outboundSchema: z.ZodNativeEnum< typeof EmploymentStatus > = EmploymentStatus$inboundSchema; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace EmploymentStatus$ { /** @deprecated use `EmploymentStatus$inboundSchema` instead. */ export const inboundSchema = EmploymentStatus$inboundSchema; /** @deprecated use `EmploymentStatus$outboundSchema` instead. */ export const outboundSchema = EmploymentStatus$outboundSchema; }