import { TaskStatusEnum } from './TaskStatusEnum';
/** Operation on a telephony service */
export interface Task {
    /** Action associated with the task */
    action: string;
    /** Potential failure reason of the task */
    message?: string;
    /** Object potentially created at the end of the task */
    objectCreated?: string;
    /**  */
    serviceType: string;
    /** Status of the task */
    status: TaskStatusEnum;
    /**  */
    taskId: number;
}
//# sourceMappingURL=Task.d.ts.map