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