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