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