@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
24 lines • 753 B
TypeScript
import { TaskFunctionEnum } from '../storage/TaskFunctionEnum';
import { TaskStatusEnum } from '../TaskStatusEnum';
/** Storage task */
export interface Task {
/** information about operation */
details?: string;
/** the date when the task finished */
doneDate?: string;
/** last modification of task */
lastUpdate?: string;
/** Task type of operation */
operation: TaskFunctionEnum;
/** name of the partition */
partitionName?: string;
/** The actual state of the task */
status: TaskStatusEnum;
/** the name of your service */
storageName?: string;
/** id of the task */
taskId: number;
/** Insertion of task in the todo */
todoDate?: string;
}
//# sourceMappingURL=Task.d.ts.map