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