1
0
mirror of https://github.com/bitwarden/jslib synced 2026-01-05 01:53:13 +00:00
Files
jslib/src/models/response/organizationUserBulkResponse.ts
Oscar Hinton bacb84ca78 Bulk confirm (#386)
* Add api for bulk confirm

* Rename OrganizationUserBulkConfirmResponse to OrganizationUserBulkResponse

* Add keys to contructor for OrganizationUserBulkConfirmRequest

* Linting
2021-05-25 19:02:49 +02:00

13 lines
321 B
TypeScript

import { BaseResponse } from './baseResponse';
export class OrganizationUserBulkResponse extends BaseResponse {
id: string;
error: string;
constructor(response: any) {
super(response);
this.id = this.getResponseProperty('Id');
this.error = this.getResponseProperty('Error');
}
}