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