mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 00:03:56 +00:00
13 lines
299 B
TypeScript
13 lines
299 B
TypeScript
import { BaseResponse } from "../base.response";
|
|
|
|
export class ProviderUserBulkResponse extends BaseResponse {
|
|
id: string;
|
|
error: string;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.error = this.getResponseProperty("Error");
|
|
}
|
|
}
|