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