/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type QueueStepsResponse = { runId: string; }; /** @internal */ export const QueueStepsResponse$inboundSchema: z.ZodType< QueueStepsResponse, z.ZodTypeDef, unknown > = z.object({ runId: z.string(), }); /** @internal */ export type QueueStepsResponse$Outbound = { runId: string; }; /** @internal */ export const QueueStepsResponse$outboundSchema: z.ZodType< QueueStepsResponse$Outbound, z.ZodTypeDef, QueueStepsResponse > = 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 QueueStepsResponse$ { /** @deprecated use `QueueStepsResponse$inboundSchema` instead. */ export const inboundSchema = QueueStepsResponse$inboundSchema; /** @deprecated use `QueueStepsResponse$outboundSchema` instead. */ export const outboundSchema = QueueStepsResponse$outboundSchema; /** @deprecated use `QueueStepsResponse$Outbound` instead. */ export type Outbound = QueueStepsResponse$Outbound; }