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