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