import * as z from "zod"; export type HoldoutFullUpdateContractDto = { /** * enable or disable the holdout */ isEnabled: boolean; /** * brief summary of what the holdout is being used for */ description: string; /** * percentage of users between 0-10% to pass through the holdout */ passPercentage: number; /** * an array of gateIDs which this holdout is applied to */ gateIDs: Array; /** * an array of experimentIDs which this holdout is applied to */ experimentIDs: Array; /** * an array of layerIDs which this holdout is applied to */ layerIDs: Array; /** * whether the holdout is being applied to all new gates */ isGlobal: boolean; /** * the gateID that the holdout is targeting */ targetingGateID?: any | null | undefined; }; /** @internal */ export declare const HoldoutFullUpdateContractDto$inboundSchema: z.ZodType; /** @internal */ export type HoldoutFullUpdateContractDto$Outbound = { isEnabled: boolean; description: string; passPercentage: number; gateIDs: Array; experimentIDs: Array; layerIDs: Array; isGlobal: boolean; targetingGateID?: any | null | undefined; }; /** @internal */ export declare const HoldoutFullUpdateContractDto$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace HoldoutFullUpdateContractDto$ { /** @deprecated use `HoldoutFullUpdateContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HoldoutFullUpdateContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HoldoutFullUpdateContractDto$Outbound` instead. */ type Outbound = HoldoutFullUpdateContractDto$Outbound; } //# sourceMappingURL=holdoutfullupdatecontractdto.d.ts.map