/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The Digest Type */ export const DigestTypeEnum = { Regular: "regular", Backoff: "backoff", Timed: "timed", } as const; /** * The Digest Type */ export type DigestTypeEnum = ClosedEnum; /** @internal */ export const DigestTypeEnum$inboundSchema: z.ZodNativeEnum< typeof DigestTypeEnum > = z.nativeEnum(DigestTypeEnum);