import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1SegmentsControllerGenListRequest = { /** * Results per page */ limit?: any | undefined; /** * Page number */ page?: any | undefined; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * List Segments Success */ export type ConsoleV1SegmentsControllerGenListResponseBody = { /** * 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 ConsoleV1SegmentsControllerGenListRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1SegmentsControllerGenListRequest$Outbound = { limit?: any | undefined; page?: any | undefined; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1SegmentsControllerGenListRequest$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 ConsoleV1SegmentsControllerGenListRequest$ { /** @deprecated use `ConsoleV1SegmentsControllerGenListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsControllerGenListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsControllerGenListRequest$Outbound` instead. */ type Outbound = ConsoleV1SegmentsControllerGenListRequest$Outbound; } /** @internal */ export declare const ConsoleV1SegmentsControllerGenListResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1SegmentsControllerGenListResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1SegmentsControllerGenListResponseBody$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 ConsoleV1SegmentsControllerGenListResponseBody$ { /** @deprecated use `ConsoleV1SegmentsControllerGenListResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsControllerGenListResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1SegmentsControllerGenListResponseBody$Outbound` instead. */ type Outbound = ConsoleV1SegmentsControllerGenListResponseBody$Outbound; } //# sourceMappingURL=consolev1segmentscontrollergenlist.d.ts.map