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