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:
@@ -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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user