import { ContactTypeEnum } from '../changeContact/ContactTypeEnum';
import { TaskStateEnum } from '../changeContact/TaskStateEnum';
/** Task running a contact change on a service */
export interface Task {
    /** Account who asked the contact change */
    askingAccount?: string;
    /** Contacts to be changed */
    contactTypes: ContactTypeEnum[];
    /** Date at which the contact change has been finished */
    dateDone?: string;
    /** Date at which the request has been made */
    dateRequest: string;
    /** Account to change contact from */
    fromAccount: string;
    /**  */
    id: number;
    /** The service on which the task runs */
    serviceDomain?: string;
    /** Current state of the request */
    state: TaskStateEnum;
    /** Account to change contact to */
    toAccount: string;
}
//# sourceMappingURL=Task.d.ts.map