]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/models/finished-task.ts
import 15.2.5
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / models / finished-task.ts
1 import { Task } from './task';
2 import { TaskException } from './task-exception';
3
4 export class FinishedTask extends Task {
5 begin_time: string;
6 end_time: string;
7 exception: TaskException;
8 latency: number;
9 progress: number;
10 ret_value: any;
11 success: boolean;
12 duration: number;
13
14 errorMessage: string;
15 }