import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1ExperimentsControllerGenListRequest = { /** * Which layer to place the experiment into. */ layerID?: string | undefined; /** * The idType the experiment will be performed on */ idType?: string | undefined; /** * The current status of the experiment */ status?: any | undefined; /** * Name of the creator. */ creatorName?: string | null | undefined; /** * ID of the user who created the entity. */ creatorID?: string | null | undefined; /** * Filter by tags */ tags?: any | undefined; /** * Results per page */ limit?: any | undefined; /** * Page number */ page?: any | undefined; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * List Experiments Success */ export type ConsoleV1ExperimentsControllerGenListResponseBody = { /** * 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 ConsoleV1ExperimentsControllerGenListRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenListRequest$Outbound = { layerID?: string | undefined; idType?: string | undefined; status?: any | undefined; creatorName?: string | null | undefined; creatorID?: string | null | undefined; tags?: any | undefined; limit?: any | undefined; page?: any | undefined; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenListRequest$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 ConsoleV1ExperimentsControllerGenListRequest$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenListRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenListRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenListRequest$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenListRequest$Outbound; } /** @internal */ export declare const ConsoleV1ExperimentsControllerGenListResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1ExperimentsControllerGenListResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1ExperimentsControllerGenListResponseBody$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 ConsoleV1ExperimentsControllerGenListResponseBody$ { /** @deprecated use `ConsoleV1ExperimentsControllerGenListResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenListResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1ExperimentsControllerGenListResponseBody$Outbound` instead. */ type Outbound = ConsoleV1ExperimentsControllerGenListResponseBody$Outbound; } //# sourceMappingURL=consolev1experimentscontrollergenlist.d.ts.map