/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type GetRunRequest = { runId: string; }; /** @internal */ export const GetRunRequest$inboundSchema: z.ZodType< GetRunRequest, z.ZodTypeDef, unknown > = z.object({ runId: z.string(), }); /** @internal */ export type GetRunRequest$Outbound = { runId: string; }; /** @internal */ export const GetRunRequest$outboundSchema: z.ZodType< GetRunRequest$Outbound, z.ZodTypeDef, GetRunRequest > = z.object({ runId: z.string(), }); /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export namespace GetRunRequest$ { /** @deprecated use `GetRunRequest$inboundSchema` instead. */ export const inboundSchema = GetRunRequest$inboundSchema; /** @deprecated use `GetRunRequest$outboundSchema` instead. */ export const outboundSchema = GetRunRequest$outboundSchema; /** @deprecated use `GetRunRequest$Outbound` instead. */ export type Outbound = GetRunRequest$Outbound; }