From b2a804117358f121fdfe15a8f7e912dedb06b295 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 4 Oct 2019 09:45:37 -0400 Subject: [PATCH] fix twoFactorEnabled type --- src/models/response/organizationUserResponse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/response/organizationUserResponse.ts b/src/models/response/organizationUserResponse.ts index 333baa838a3..444e27906bc 100644 --- a/src/models/response/organizationUserResponse.ts +++ b/src/models/response/organizationUserResponse.ts @@ -24,7 +24,7 @@ export class OrganizationUserResponse extends BaseResponse { export class OrganizationUserUserDetailsResponse extends OrganizationUserResponse { name: string; email: string; - twoFactorEnabled: string; + twoFactorEnabled: boolean; constructor(response: any) { super(response);