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