mirror of
https://github.com/bitwarden/jslib
synced 2026-01-05 01:53:13 +00:00
* Add api for bulk confirm * Rename OrganizationUserBulkConfirmResponse to OrganizationUserBulkResponse * Add keys to contructor for OrganizationUserBulkConfirmRequest * Linting
13 lines
321 B
TypeScript
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');
|
|
}
|
|
}
|