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