/*
 * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT.
 */

import * as z from "zod/v3";
import { ClosedEnum } from "../../types/enums.js";

export const ImageDetail = {
  Low: "low",
  Auto: "auto",
  High: "high",
} as const;
export type ImageDetail = ClosedEnum<typeof ImageDetail>;

/** @internal */
export const ImageDetail$inboundSchema: z.ZodNativeEnum<typeof ImageDetail> = z
  .nativeEnum(ImageDetail);
/** @internal */
export const ImageDetail$outboundSchema: z.ZodNativeEnum<typeof ImageDetail> =
  ImageDetail$inboundSchema;
