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