import * as z from "zod"; /** * Schema for updating the status of an experiment */ export type ExperimentStatusUpdateDto = { /** * The unique identifier for the experiment */ id?: string | undefined; /** * The reason for making the decision to update the experiment status */ decisionReason: string; /** * Indicates whether to remove targeting from the experiment */ removeTargeting: boolean; }; /** @internal */ export declare const ExperimentStatusUpdateDto$inboundSchema: z.ZodType; /** @internal */ export type ExperimentStatusUpdateDto$Outbound = { id?: string | undefined; decisionReason: string; removeTargeting: boolean; }; /** @internal */ export declare const ExperimentStatusUpdateDto$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 ExperimentStatusUpdateDto$ { /** @deprecated use `ExperimentStatusUpdateDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExperimentStatusUpdateDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExperimentStatusUpdateDto$Outbound` instead. */ type Outbound = ExperimentStatusUpdateDto$Outbound; } //# sourceMappingURL=experimentstatusupdatedto.d.ts.map