Add usesKeyConnector to OrganizationUserUserDetailsResponse (#559)
This commit is contained in:
parent
8b01eea446
commit
a3e00cdc15
|
@ -32,12 +32,14 @@ export class OrganizationUserUserDetailsResponse extends OrganizationUserRespons
|
||||||
name: string;
|
name: string;
|
||||||
email: string;
|
email: string;
|
||||||
twoFactorEnabled: boolean;
|
twoFactorEnabled: boolean;
|
||||||
|
usesKeyConnector: boolean;
|
||||||
|
|
||||||
constructor(response: any) {
|
constructor(response: any) {
|
||||||
super(response);
|
super(response);
|
||||||
this.name = this.getResponseProperty('Name');
|
this.name = this.getResponseProperty('Name');
|
||||||
this.email = this.getResponseProperty('Email');
|
this.email = this.getResponseProperty('Email');
|
||||||
this.twoFactorEnabled = this.getResponseProperty('TwoFactorEnabled');
|
this.twoFactorEnabled = this.getResponseProperty('TwoFactorEnabled');
|
||||||
|
this.usesKeyConnector = this.getResponseProperty('UsesKeyConnector') ?? false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue