/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod"; export type ConditionSubjectV3 = { /** * Human readable identifier for the subject */ label: string; /** * Reference into the scope for the value of the subject */ reference: string; }; /** @internal */ export const ConditionSubjectV3$inboundSchema: z.ZodType< ConditionSubjectV3, z.ZodTypeDef, unknown > = z.object({ label: z.string(), reference: z.string(), }); /** @internal */ export type ConditionSubjectV3$Outbound = { label: string; reference: string; }; /** @internal */ export const ConditionSubjectV3$outboundSchema: z.ZodType< ConditionSubjectV3$Outbound, z.ZodTypeDef, ConditionSubjectV3 > = z.object({ label: z.string(), reference: 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 ConditionSubjectV3$ { /** @deprecated use `ConditionSubjectV3$inboundSchema` instead. */ export const inboundSchema = ConditionSubjectV3$inboundSchema; /** @deprecated use `ConditionSubjectV3$outboundSchema` instead. */ export const outboundSchema = ConditionSubjectV3$outboundSchema; /** @deprecated use `ConditionSubjectV3$Outbound` instead. */ export type Outbound = ConditionSubjectV3$Outbound; }