import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1MetricValuesControllerGenListMetricValuesRequest = { date: string; metricName?: string | undefined; metricType?: string | 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 All Metric Values Response */ export type ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody = { /** * 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 ConsoleV1MetricValuesControllerGenListMetricValuesRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricValuesControllerGenListMetricValuesRequest$Outbound = { date: string; metricName?: string | undefined; metricType?: string | undefined; limit?: any | undefined; page?: any | undefined; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1MetricValuesControllerGenListMetricValuesRequest$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 ConsoleV1MetricValuesControllerGenListMetricValuesRequest$ { /** @deprecated use `ConsoleV1MetricValuesControllerGenListMetricValuesRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricValuesControllerGenListMetricValuesRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricValuesControllerGenListMetricValuesRequest$Outbound` instead. */ type Outbound = ConsoleV1MetricValuesControllerGenListMetricValuesRequest$Outbound; } /** @internal */ export declare const ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$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 ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$ { /** @deprecated use `ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$Outbound` instead. */ type Outbound = ConsoleV1MetricValuesControllerGenListMetricValuesResponseBody$Outbound; } //# sourceMappingURL=consolev1metricvaluescontrollergenlistmetricvalues.d.ts.map