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