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