import { BmbyEntity } from "./BmbyEntity"; import { Contact } from "./Contact"; import { CrmTaskType, CrmTaskSubType, CrmTaskStatus, CrmTaskPriority } from "../Enumerations"; export declare class CrmTask extends BmbyEntity { private _participants; constructor(); data: any; readonly voice: string; id: string; location: string; locationLat: number; locationLon: number; propertyId: string; customerId: string; subject: string; message: string; taskType: CrmTaskType; taskSubType: CrmTaskSubType; status: CrmTaskStatus; priority: CrmTaskPriority; meetingStartDate: Date; meetingEndDate: Date; taskDate: Date; user: string; participants: Array; }