upgrade js api (#5152)

* upgrade to latest js api

* add missing types

* remove useless function

* fix types

* enable strict mode

* Revert "enable strict mode"

This reverts commit 8e3f9c4563.
This commit is contained in:
Denys Vuika
2019-10-14 18:28:01 +01:00
committed by Eugenio Romano
parent 47ec01555a
commit b3ca2166f0
9 changed files with 88 additions and 82 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;
}
}