diff --git a/src/models/response/organizationUserResponse.ts b/src/models/response/organizationUserResponse.ts index 7f377b5e95..144bcf9539 100644 --- a/src/models/response/organizationUserResponse.ts +++ b/src/models/response/organizationUserResponse.ts @@ -21,11 +21,13 @@ export class OrganizationUserResponse { export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse { name: string; email: string; + twoFactorEnabled: string; constructor(response: any) { super(response); this.name = response.Name; this.email = response.Email; + this.twoFactorEnabled = response.TwoFactorEnabled; } }