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