/** * This file was auto-generated by Fern from our API Definition. */ /** * Gmail Message object with essential fields */ export interface GmailMessage { /** Email subject (required) */ subject: string; /** Recipient email address (required) */ to: string; /** CC email addresses (comma-separated) */ cc?: string; /** BCC email addresses (comma-separated) */ bcc?: string; /** Email body content (required) */ body: string; /** Sender email address (optional, defaults to authenticated user) */ from?: string; /** Reply-to email address */ reply_to?: string; /** Gmail labels (e.g., INBOX, SENT, IMPORTANT) */ labels?: string[]; }