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