import { BaseModel } from './baseModel'; import { ObjectId } from 'mongodb'; export interface Attachment extends BaseModel { name?: string; documentType?: string; parent?: string | ObjectId; entityType?: string; entity?: { [key: string]: any; } | ObjectId; extras?: string; s3Data: { location: string; originalName: string; newName: string; }; tempFileURL?: string; }