/** Event entity returned by the RH API. */ type Event = { id: number; eventType: string; companyId: string; identifier: string; callId: string; text: string; createdBy: string; updatedAt: string; createdAt: string; eventBody: any; contact: any; device: any; origin: any; destination: any; }; export type { Event };