import { ObjectId } from 'mongodb'; import { BaseModel } from './baseModel'; import { Customer } from './customer'; import { LmdInvoice } from './lmdInvoice'; export interface LmdInvoiceResult extends BaseModel { lmdInvoice: LmdInvoice | ObjectId; info: string; customer: Customer | ObjectId; data: { raw?: { [key: string]: any; }; processed?: { [key: string]: any; }; }; entity?: any; error?: string; }