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