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