From ca6f235a34b23ed169893f431a3f854619094de8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 15 Jan 2020 15:22:34 -0500 Subject: [PATCH] usePolicies on org profile response --- src/models/response/profileOrganizationResponse.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/models/response/profileOrganizationResponse.ts b/src/models/response/profileOrganizationResponse.ts index 55eb3a6890..6a76878c5a 100644 --- a/src/models/response/profileOrganizationResponse.ts +++ b/src/models/response/profileOrganizationResponse.ts @@ -6,6 +6,7 @@ import { OrganizationUserType } from '../../enums/organizationUserType'; export class ProfileOrganizationResponse extends BaseResponse { id: string; name: string; + usePolicies: boolean; useGroups: boolean; useDirectory: boolean; useEvents: boolean; @@ -26,6 +27,7 @@ export class ProfileOrganizationResponse extends BaseResponse { super(response); this.id = this.getResponseProperty('Id'); this.name = this.getResponseProperty('Name'); + this.usePolicies = this.getResponseProperty('UsePolicies'); this.useGroups = this.getResponseProperty('UseGroups'); this.useDirectory = this.getResponseProperty('UseDirectory'); this.useEvents = this.getResponseProperty('UseEvents');