1
0
mirror of https://github.com/bitwarden/directory-connector synced 2026-01-10 04:23:26 +00:00
Files
directory-connector/jslib/common/src/models/response/selectionReadOnlyResponse.ts
2022-04-28 16:41:07 +02:00

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");
}
}