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