[ADF-4273] Remove description property from Process Instance Cloud Model (#4568)

* [ADF-4273] Remove description property from Process Instance Cloud Model

* [ADF-4273] Remove from e2e tests
This commit is contained in:
davidcanonieto
2019-04-09 16:49:44 +01:00
committed by Eugenio Romano
parent ce0775c525
commit 2753771d29
9 changed files with 1 additions and 46 deletions

View File

@@ -19,7 +19,6 @@ export class ProcessInstanceCloud {
appName: string;
id: string;
name: string;
description: string;
startDate: Date;
initiator: string;
status: string;
@@ -33,7 +32,6 @@ export class ProcessInstanceCloud {
this.appName = obj && obj.appName || null;
this.id = obj && obj.id || null;
this.name = obj && obj.name || null;
this.description = obj && obj.description || null;
this.startDate = obj && obj.startDate || null;
this.initiator = obj && obj.initiator || null;
this.status = obj && obj.status || null;