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