import { ClosedEnum } from "../../types/enums.js"; import * as z from "zod"; export declare const ConsoleV1TargetAppControllerGenReadStatus: { readonly FourHundredAndOne: 401; }; export type ConsoleV1TargetAppControllerGenReadStatus = ClosedEnum; /** * This endpoint only accepts an active CONSOLE key, but an invalid key was sent. Key: console-xxxXXXxxxXXXxxx */ export type ConsoleV1TargetAppControllerGenReadResponseBodyData = { status: ConsoleV1TargetAppControllerGenReadStatus; message: string; }; /** * This endpoint only accepts an active CONSOLE key, but an invalid key was sent. Key: console-xxxXXXxxxXXXxxx */ export declare class ConsoleV1TargetAppControllerGenReadResponseBody extends Error { status: ConsoleV1TargetAppControllerGenReadStatus; /** The original data that was passed to this error instance. */ data$: ConsoleV1TargetAppControllerGenReadResponseBodyData; constructor(err: ConsoleV1TargetAppControllerGenReadResponseBodyData); } /** @internal */ export declare const ConsoleV1TargetAppControllerGenReadStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const ConsoleV1TargetAppControllerGenReadStatus$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace ConsoleV1TargetAppControllerGenReadStatus$ { /** @deprecated use `ConsoleV1TargetAppControllerGenReadStatus$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FourHundredAndOne: 401; }>; /** @deprecated use `ConsoleV1TargetAppControllerGenReadStatus$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FourHundredAndOne: 401; }>; } /** @internal */ export declare const ConsoleV1TargetAppControllerGenReadResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TargetAppControllerGenReadResponseBody$Outbound = { status: number; message: string; }; /** @internal */ export declare const ConsoleV1TargetAppControllerGenReadResponseBody$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 ConsoleV1TargetAppControllerGenReadResponseBody$ { /** @deprecated use `ConsoleV1TargetAppControllerGenReadResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenReadResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TargetAppControllerGenReadResponseBody$Outbound` instead. */ type Outbound = ConsoleV1TargetAppControllerGenReadResponseBody$Outbound; } //# sourceMappingURL=consolev1targetappcontrollergenread.d.ts.map