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