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