/** * This file was auto-generated by Fern from our API Definition. */ /** * Outlook Calendar Event object */ export interface OutlookCalendarEvent { /** Event ID (read-only, set by Outlook) */ id?: string; /** Event subject/title */ subject: string; /** Start time with dateTime and timeZone */ start?: Record; /** End time with dateTime and timeZone */ end?: Record; /** Location object with displayName */ location?: Record; /** List of attendee email addresses (e.g., ['user@example.com']) */ attendees?: string[]; }