mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-10 04:23:26 +00:00
15 lines
402 B
TypeScript
15 lines
402 B
TypeScript
import { BaseResponse } from "./baseResponse";
|
|
|
|
export class SelectionReadOnlyResponse extends BaseResponse {
|
|
id: string;
|
|
readOnly: boolean;
|
|
hidePasswords: boolean;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.id = this.getResponseProperty("Id");
|
|
this.readOnly = this.getResponseProperty("ReadOnly");
|
|
this.hidePasswords = this.getResponseProperty("HidePasswords");
|
|
}
|
|
}
|