import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1TagsControllerGenReadRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Read Tag Success */ export type ConsoleV1TagsControllerGenReadResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: Array; /** * Pagination metadata for checking if there is next page for example. */ pagination: components.PaginationResponseMetadataDto; }; /** @internal */ export declare const ConsoleV1TagsControllerGenReadRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TagsControllerGenReadRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1TagsControllerGenReadRequest$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 ConsoleV1TagsControllerGenReadRequest$ { /** @deprecated use `ConsoleV1TagsControllerGenReadRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TagsControllerGenReadRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TagsControllerGenReadRequest$Outbound` instead. */ type Outbound = ConsoleV1TagsControllerGenReadRequest$Outbound; } /** @internal */ export declare const ConsoleV1TagsControllerGenReadResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1TagsControllerGenReadResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1TagsControllerGenReadResponseBody$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 ConsoleV1TagsControllerGenReadResponseBody$ { /** @deprecated use `ConsoleV1TagsControllerGenReadResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TagsControllerGenReadResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1TagsControllerGenReadResponseBody$Outbound` instead. */ type Outbound = ConsoleV1TagsControllerGenReadResponseBody$Outbound; } //# sourceMappingURL=consolev1tagscontrollergenread.d.ts.map