import * as z from "zod"; export type HoldoutDto = { /** * ID */ id: string; /** * Optional name for the configuration. */ name?: string | undefined; /** * type of id */ idType: string; /** * brief summary of what the holdout is being used for */ description: string; /** * ID of the last modifier. */ lastModifierID?: any | null | undefined; /** * Time of the last modification. */ lastModifiedTime?: any | null | undefined; /** * Email of the last modifier. */ lastModifierEmail?: any | null | undefined; /** * Name of the last modifier. */ lastModifierName?: any | null | undefined; /** * ID of the user who created the entity. */ creatorID?: any | null | undefined; /** * Timestamp when the entity was created. */ createdTime: number; /** * Name of the creator. */ creatorName?: any | null | undefined; /** * Email of the creator. */ creatorEmail?: any | null | undefined; /** * Optional tags for categorization. */ tags?: Array | undefined; /** * List of target applications associated with this configuration. */ targetApps?: Array | undefined; /** * Holdouts applied to this configuration. */ holdoutIDs?: Array | undefined; /** * Optional identifier for the responsible team. */ team?: any | null | undefined; /** * enable or disable the holdout */ isEnabled: boolean; /** * 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 HoldoutDto$inboundSchema: z.ZodType; /** @internal */ export type HoldoutDto$Outbound = { id: string; name?: string | undefined; idType: string; description: string; lastModifierID?: any | null | undefined; lastModifiedTime?: any | null | undefined; lastModifierEmail?: any | null | undefined; lastModifierName?: any | null | undefined; creatorID?: any | null | undefined; createdTime: number; creatorName?: any | null | undefined; creatorEmail?: any | null | undefined; tags?: Array | undefined; targetApps?: Array | undefined; holdoutIDs?: Array | undefined; team?: any | null | undefined; isEnabled: boolean; passPercentage: number; gateIDs: Array; experimentIDs: Array; layerIDs: Array; isGlobal: boolean; targetingGateID?: any | null | undefined; }; /** @internal */ export declare const HoldoutDto$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 HoldoutDto$ { /** @deprecated use `HoldoutDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HoldoutDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HoldoutDto$Outbound` instead. */ type Outbound = HoldoutDto$Outbound; } //# sourceMappingURL=holdoutdto.d.ts.map