import * as z from "zod"; export type HoldoutPartialUpdateContractDto = { /** * enable or disable the holdout */ isEnabled?: boolean | undefined; /** * brief summary of what the holdout is being used for */ description?: string | undefined; /** * percentage of users between 0-10% to pass through the holdout */ passPercentage?: number | undefined; /** * an array of gateIDs which this holdout is applied to */ gateIDs?: Array | undefined; /** * an array of experimentIDs which this holdout is applied to */ experimentIDs?: Array | undefined; /** * an array of layerIDs which this holdout is applied to */ layerIDs?: Array | undefined; /** * whether the holdout is being applied to all new gates */ isGlobal?: boolean | undefined; /** * the gateID that the holdout is targeting */ targetingGateID?: any | null | undefined; }; /** @internal */ export declare const HoldoutPartialUpdateContractDto$inboundSchema: z.ZodType; /** @internal */ export type HoldoutPartialUpdateContractDto$Outbound = { isEnabled?: boolean | undefined; description?: string | undefined; passPercentage?: number | undefined; gateIDs?: Array | undefined; experimentIDs?: Array | undefined; layerIDs?: Array | undefined; isGlobal?: boolean | undefined; targetingGateID?: any | null | undefined; }; /** @internal */ export declare const HoldoutPartialUpdateContractDto$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 HoldoutPartialUpdateContractDto$ { /** @deprecated use `HoldoutPartialUpdateContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HoldoutPartialUpdateContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HoldoutPartialUpdateContractDto$Outbound` instead. */ type Outbound = HoldoutPartialUpdateContractDto$Outbound; } //# sourceMappingURL=holdoutpartialupdatecontractdto.d.ts.map