Interface for calendar event data

interface CalendarEvent {
    calendarId: string;
    category: string;
    end: string;
    id: number;
    isAllDay: boolean;
    raw: Verification;
    start: string;
}

Properties

calendarId: string
category: string
end: string
id: number
isAllDay: boolean
start: string