import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1SegmentsIDListControllerAddRequest = { /** * id */ id: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; segmentIDListContractDto: components.SegmentIDListContractDto; }; /** * Segment ids updated successfully. */ export type ConsoleV1SegmentsIDListControllerAddResponseBody = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1SegmentsIDListControllerAddRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1SegmentsIDListControllerAddRequest$Outbound = { id: string; "x-respect-review-settings"?: string | undefined; SegmentIDListContractDto: components.SegmentIDListContractDto$Outbound; }; /** @internal */ export declare const ConsoleV1SegmentsIDListControllerAddRequest$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 ConsoleV1SegmentsIDListControllerAddRequest$ { /** @deprecated use `ConsoleV1SegmentsIDListControllerAddRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsIDListControllerAddRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsIDListControllerAddRequest$Outbound` instead. */ type Outbound = ConsoleV1SegmentsIDListControllerAddRequest$Outbound; } /** @internal */ export declare const ConsoleV1SegmentsIDListControllerAddResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1SegmentsIDListControllerAddResponseBody$Outbound = { message?: string | undefined; }; /** @internal */ export declare const ConsoleV1SegmentsIDListControllerAddResponseBody$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 ConsoleV1SegmentsIDListControllerAddResponseBody$ { /** @deprecated use `ConsoleV1SegmentsIDListControllerAddResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsIDListControllerAddResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsIDListControllerAddResponseBody$Outbound` instead. */ type Outbound = ConsoleV1SegmentsIDListControllerAddResponseBody$Outbound; } //# sourceMappingURL=consolev1segmentsidlistcontrolleradd.d.ts.map