import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1ExperimentsControllerGenRemoveRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Delete Experiment Success */ export type ConsoleV1ExperimentsControllerGenRemoveResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: components.ExternalExperimentDto; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenRemoveRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenRemoveRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenRemoveRequest$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 ConsoleV1ExperimentsControllerGenRemoveRequest$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenRemoveRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenRemoveRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenRemoveRequest$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenRemoveRequest$Outbound; } /** @internal */ export declare const ConsoleV1ExperimentsControllerGenRemoveResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenRemoveResponseBody$Outbound = { message: string; data: components.ExternalExperimentDto$Outbound; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenRemoveResponseBody$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 ConsoleV1ExperimentsControllerGenRemoveResponseBody$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenRemoveResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenRemoveResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenRemoveResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenRemoveResponseBody$Outbound; } //# sourceMappingURL=consolev1experimentscontrollergenremove.d.ts.map