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