import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1MetricsControllerGenExperimentListFromMetricRequest = { /** * id */ id: string; /** * 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 experinments using metric response */ export type ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody = { /** * 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 ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$Outbound = { id: string; 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 ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$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 ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$ { /** @deprecated use `ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerGenExperimentListFromMetricRequest$Outbound; } /** @internal */ export declare const ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$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 ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$ { /** @deprecated use `ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerGenExperimentListFromMetricResponseBody$Outbound; } //# sourceMappingURL=consolev1metricscontrollergenexperimentlistfrommetric.d.ts.map