import { WorkspaceEventResource, WorkspaceEventRelatedResource } from '../../models/workspaceEvent'; export type WorkspaceEventResponse = { id: string; account: string; event: string; occurred: string; payload: unknown; received: string; related: WorkspaceEventRelatedResource[]; resource: WorkspaceEventResource; workspace: string | null; }; export type WorkspaceEventsResponse = { events: WorkspaceEventResponse[]; next_page: string | null; total: number; }; export type WorkspaceEventsCountResponse = { count: number; label: string; value: string; start_time: string; end_time: string; };