/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type EngineParamBindingValueV3 = { /** * Human readable label to be displayed for user to select */ label: string; /** * 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 EngineParamBindingValueV3$inboundSchema: z.ZodType< EngineParamBindingValueV3, z.ZodTypeDef, unknown > = z.object({ label: z.string(), literal: z.string().optional(), reference: z.string().optional(), }); /** @internal */ export type EngineParamBindingValueV3$Outbound = { label: string; literal?: string | undefined; reference?: string | undefined; }; /** @internal */ export const EngineParamBindingValueV3$outboundSchema: z.ZodType< EngineParamBindingValueV3$Outbound, z.ZodTypeDef, EngineParamBindingValueV3 > = z.object({ label: z.string(), 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 EngineParamBindingValueV3$ { /** @deprecated use `EngineParamBindingValueV3$inboundSchema` instead. */ export const inboundSchema = EngineParamBindingValueV3$inboundSchema; /** @deprecated use `EngineParamBindingValueV3$outboundSchema` instead. */ export const outboundSchema = EngineParamBindingValueV3$outboundSchema; /** @deprecated use `EngineParamBindingValueV3$Outbound` instead. */ export type Outbound = EngineParamBindingValueV3$Outbound; }