diff --git a/common/src/models/response/organizationUserBulkPublicKeyResponse.ts b/common/src/models/response/organizationUserBulkPublicKeyResponse.ts index 12f1ad9c035..f5891c100a9 100644 --- a/common/src/models/response/organizationUserBulkPublicKeyResponse.ts +++ b/common/src/models/response/organizationUserBulkPublicKeyResponse.ts @@ -2,11 +2,13 @@ import { BaseResponse } from './baseResponse'; export class OrganizationUserBulkPublicKeyResponse extends BaseResponse { id: string; + userId: string; key: string; constructor(response: any) { super(response); this.id = this.getResponseProperty('Id'); + this.userId = this.getResponseProperty('UserId'); this.key = this.getResponseProperty('Key'); } }