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