aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/responses/automated-upgrade-response.ts
blob: feac8685a7ca0f3b86fc49b52d630b225e602fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**
 * Created by ob0695 on 4/29/2018.
 */

export class AutomatedUpgradeStatusResponse {
    name:string;
    status:string;
    uniqueId:string;
    version:string;
}

export class AutomatedUpgradeGenericResponse {
    error:string;
    status:string;
    componentToUpgradeStatus:Array<AutomatedUpgradeStatusResponse>;
}