import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1MetricsControllerGenReadMetricRequest = { /** * The unique identifier of the metric */ id: string; date: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Get metric data on given date response */ export type ConsoleV1MetricsControllerGenReadMetricResponseBody = { /** * 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 ConsoleV1MetricsControllerGenReadMetricRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerGenReadMetricRequest$Outbound = { id: string; date: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1MetricsControllerGenReadMetricRequest$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 ConsoleV1MetricsControllerGenReadMetricRequest$ { /** @deprecated use `ConsoleV1MetricsControllerGenReadMetricRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenReadMetricRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenReadMetricRequest$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerGenReadMetricRequest$Outbound; } /** @internal */ export declare const ConsoleV1MetricsControllerGenReadMetricResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1MetricsControllerGenReadMetricResponseBody$Outbound = { message: string; data: Array; pagination: components.PaginationResponseMetadataDto$Outbound; }; /** @internal */ export declare const ConsoleV1MetricsControllerGenReadMetricResponseBody$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 ConsoleV1MetricsControllerGenReadMetricResponseBody$ { /** @deprecated use `ConsoleV1MetricsControllerGenReadMetricResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenReadMetricResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1MetricsControllerGenReadMetricResponseBody$Outbound` instead. */ type Outbound = ConsoleV1MetricsControllerGenReadMetricResponseBody$Outbound; } //# sourceMappingURL=consolev1metricscontrollergenreadmetric.d.ts.map