From cddeeefdbb14d5f70020fb705885eb05a0bb4339 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 19 Dec 2018 11:29:44 -0500 Subject: [PATCH] twoFactorEnabled on org user details --- src/models/response/organizationUserResponse.ts | 2 ++ 1 file changed, 2 insertions(+) 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; } }