/** * This file was auto-generated by Fern from our API Definition. */ /** * Outlook Mail Message object */ export interface OutlookMailMessage { /** Message ID (read-only, set by Outlook) */ id?: string; /** Email subject */ subject: string; /** Email body with content and contentType */ body?: Record; /** From address with emailAddress object */ from?: Record; /** List of recipient email addresses */ to_recipients?: string[]; /** List of CC recipient email addresses */ cc_recipients?: string[]; /** Whether the message has been read */ is_read?: boolean; /** Date and time the message was received */ received_date_time?: string; }