mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 15:53:27 +00:00
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
17 lines
528 B
TypeScript
17 lines
528 B
TypeScript
import { BaseResponse } from "../../../models/response/base.response";
|
|
|
|
export class DeviceVerificationResponse extends BaseResponse {
|
|
isDeviceVerificationSectionEnabled: boolean;
|
|
unknownDeviceVerificationEnabled: boolean;
|
|
|
|
constructor(response: any) {
|
|
super(response);
|
|
this.isDeviceVerificationSectionEnabled = this.getResponseProperty(
|
|
"IsDeviceVerificationSectionEnabled",
|
|
);
|
|
this.unknownDeviceVerificationEnabled = this.getResponseProperty(
|
|
"UnknownDeviceVerificationEnabled",
|
|
);
|
|
}
|
|
}
|