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

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

export const TimestampGranularity = {
  Segment: "segment",
  Word: "word",
} as const;
export type TimestampGranularity = ClosedEnum<typeof TimestampGranularity>;

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