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