Skip to content

Commit

Permalink
[AAE-6310] Add a category in process definition model (#7439)
Browse files Browse the repository at this point in the history
  • Loading branch information
Qetikv committed Jan 7, 2022
1 parent 28bdab1 commit 131963f
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -23,6 +23,8 @@ export class ProcessDefinitionCloud {
appVersion: number;
version: number;
name: string;
category: string;
description: string;

constructor(obj?: any) {
this.id = obj && obj.id || null;
Expand All @@ -32,5 +34,7 @@ export class ProcessDefinitionCloud {
this.formKey = obj && obj.formKey || null;
this.version = obj && obj.version || 0;
this.appVersion = obj && obj.appVersion || 0;
this.category = obj && obj?.category || '';
this.description = obj && obj?.description || '';
}
}

0 comments on commit 131963f

Please sign in to comment.