diff --git a/libs/common/src/auth/models/response/device.response.ts b/libs/common/src/auth/models/response/device.response.ts index 2770499e81..6e177151f4 100644 --- a/libs/common/src/auth/models/response/device.response.ts +++ b/libs/common/src/auth/models/response/device.response.ts @@ -3,17 +3,21 @@ import { BaseResponse } from "../../../models/response/base.response"; export class DeviceResponse extends BaseResponse { id: string; + userId: string; name: number; identifier: string; type: DeviceType; creationDate: string; + revisionDate: string; constructor(response: any) { super(response); this.id = this.getResponseProperty("Id"); + this.userId = this.getResponseProperty("UserId"); this.name = this.getResponseProperty("Name"); this.identifier = this.getResponseProperty("Identifier"); this.type = this.getResponseProperty("Type"); this.creationDate = this.getResponseProperty("CreationDate"); + this.revisionDate = this.getResponseProperty("RevisionDate"); } }