upgrade to latest js api

This commit is contained in:
Denys Vuika
2019-10-14 15:37:57 +01:00
parent 1d7ef62095
commit e52b9676e4
5 changed files with 66 additions and 44 deletions

View File

@@ -28,6 +28,7 @@ export class UserProcessModel implements LightUserRepresentation {
lastName?: string;
pictureId?: number;
externalId?: string;
userImage?: string;
constructor(input?: any) {
if (input) {
@@ -37,6 +38,7 @@ export class UserProcessModel implements LightUserRepresentation {
this.lastName = input.lastName || null;
this.pictureId = input.pictureId || null;
this.externalId = input.externalId || null;
this.userImage = input.userImage;
}
}