@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 473 B
TypeScript
import { TaskActionEnum } from './TaskActionEnum';
import { TaskStatusEnum } from './TaskStatusEnum';
/** SSL Gateway tasks */
export interface Task {
/** The action made */
action: TaskActionEnum;
/** Creation date of your task */
creationDate: string;
/** Id of the task */
id: number;
/** Task progress percentage */
progress: number;
/** Current status of your task */
status: TaskStatusEnum;
}
//# sourceMappingURL=Task.d.ts.map