summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/models/finished-task.ts
blob: 9e7dd5f98ed583a417bb0ae96f144f677b551dc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Task } from './task';
import { TaskException } from './task-exception';

export class FinishedTask extends Task {
  begin_time: string;
  end_time: string;
  exception: TaskException;
  latency: number;
  progress: number;
  ret_value: any;
  success: boolean;
  duration: number;

  errorMessage: string;
}