/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type EngineParamBindingValuePayloadV2 = { /** * If set, this is the literal value of the step parameter */ literal?: string | undefined; /** * If set, this is the reference into the trigger scope that is the value of this parameter */ reference?: string | undefined; }; /** @internal */ export const EngineParamBindingValuePayloadV2$inboundSchema: z.ZodType< EngineParamBindingValuePayloadV2, z.ZodTypeDef, unknown > = z.object({ literal: z.string().optional(), reference: z.string().optional(), }); /** @internal */ export type EngineParamBindingValuePayloadV2$Outbound = { literal?: string | undefined; reference?: string | undefined; }; /** @internal */ export const EngineParamBindingValuePayloadV2$outboundSchema: z.ZodType< EngineParamBindingValuePayloadV2$Outbound, z.ZodTypeDef, EngineParamBindingValuePayloadV2 > = z.object({ literal: z.string().optional(), reference: 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 EngineParamBindingValuePayloadV2$ { /** @deprecated use `EngineParamBindingValuePayloadV2$inboundSchema` instead. */ export const inboundSchema = EngineParamBindingValuePayloadV2$inboundSchema; /** @deprecated use `EngineParamBindingValuePayloadV2$outboundSchema` instead. */ export const outboundSchema = EngineParamBindingValuePayloadV2$outboundSchema; /** @deprecated use `EngineParamBindingValuePayloadV2$Outbound` instead. */ export type Outbound = EngineParamBindingValuePayloadV2$Outbound; }