@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
29 lines • 836 B
TypeScript
import { OperationStatusEnum } from './OperationStatusEnum';
/** Tasks associated to domain */
export interface Task {
/** Can accelerate the task */
canAccelerate: boolean;
/** Can cancel the task */
canCancel: boolean;
/** Can relaunch the task */
canRelaunch: boolean;
/** Comment about the task */
comment?: string;
/** Creation date of the task */
creationDate: string;
/** Domain of the task */
domain?: string;
/** Done date of the task */
doneDate?: string;
/** Function of the task */
function: string;
/** Id of the task */
id: number;
/** Last update date of the task */
lastUpdate: string;
/** Status of the task */
status: OperationStatusEnum;
/** Todo date of the task */
todoDate: string;
}
//# sourceMappingURL=Task.d.ts.map