import * as components from "../components/index.js"; import * as z from "zod"; export type ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest = { sourceName?: string | undefined; eventName?: string | undefined; startDate: string; endDate: string; /** * Optional header to respect review settings for mutation endpoints. */ xRespectReviewSettings?: string | undefined; }; /** * Get Ingestion Event Count Success */ export type ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody = { /** * A simple string explaining the result of the operation. */ message: string; data: Array; }; /** @internal */ export declare const ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$Outbound = { source_name?: string | undefined; event_name?: string | undefined; start_date: string; end_date: string; "x-respect-review-settings"?: string | undefined; }; /** @internal */ export declare const ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$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 ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$ { /** @deprecated use `ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$Outbound` instead. */ type Outbound = ConsoleV1IngestionEventsControllerGenIngestionEventCountRequest$Outbound; } /** @internal */ export declare const ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$inboundSchema: z.ZodType; /** @internal */ export type ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$Outbound = { message: string; data: Array; }; /** @internal */ export declare const ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$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 ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$ { /** @deprecated use `ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$Outbound` instead. */ type Outbound = ConsoleV1IngestionEventsControllerGenIngestionEventCountResponseBody$Outbound; } //# sourceMappingURL=consolev1ingestioneventscontrollergeningestioneventcount.d.ts.map