1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-14 23:33:36 +00:00

[SSO Auto Enroll] Auto Enroll status retrieval (#486)

* [SSO Auto Enroll] Auto Enroll status retrieval

* Fixed import order

* Updated object property
This commit is contained in:
Vincent Salucci
2021-09-15 12:54:44 -05:00
committed by GitHub
parent ee1ea922a9
commit da132217da
4 changed files with 27 additions and 5 deletions

View File

@@ -0,0 +1,12 @@
import { BaseResponse } from './baseResponse';
export class OrganizationAutoEnrollStatusResponse extends BaseResponse {
id: string;
resetPasswordEnabled: boolean;
constructor(response: any) {
super(response);
this.id = this.getResponseProperty('Id');
this.resetPasswordEnabled = this.getResponseProperty('ResetPasswordEnabled');
}
}