/** * This file was auto-generated by Fern from our API Definition. */ /** * Google Drive file or folder object */ export interface GoogleDriveFile { /** Name of the file or folder (required) */ name: string; /** MIME type of the file (required). Use 'application/vnd.google-apps.folder' for folders */ mimeType: string; /** Description of the file */ description?: string; /** List of parent folder IDs */ parents?: string[]; /** Text content for Google Docs documents */ content?: string; }