import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1ExperimentsControllerGenArchiveRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; experimentArchiveDto: components.ExperimentArchiveDto; }; /** * Archive Experiment Success */ export type ConsoleV1ExperimentsControllerGenArchiveResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenArchiveRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenArchiveRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; ExperimentArchiveDto: components.ExperimentArchiveDto$Outbound; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenArchiveRequest$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 ConsoleV1ExperimentsControllerGenArchiveRequest$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenArchiveRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenArchiveRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenArchiveRequest$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenArchiveRequest$Outbound; } /** @internal */ export declare const ConsoleV1ExperimentsControllerGenArchiveResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenArchiveResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenArchiveResponseBody$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 ConsoleV1ExperimentsControllerGenArchiveResponseBody$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenArchiveResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenArchiveResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenArchiveResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenArchiveResponseBody$Outbound; } //# sourceMappingURL=consolev1experimentscontrollergenarchive.d.ts.map