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