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