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