Added new BusinessPortal boolean to all necessary objects (#121)
This commit is contained in:
parent
785b681f61
commit
d308245237
|
@ -16,6 +16,7 @@ export class OrganizationData {
|
||||||
useTotp: boolean;
|
useTotp: boolean;
|
||||||
use2fa: boolean;
|
use2fa: boolean;
|
||||||
useApi: boolean;
|
useApi: boolean;
|
||||||
|
useBusinessPortal: boolean;
|
||||||
selfHost: boolean;
|
selfHost: boolean;
|
||||||
usersGetPremium: boolean;
|
usersGetPremium: boolean;
|
||||||
seats: number;
|
seats: number;
|
||||||
|
@ -35,6 +36,7 @@ export class OrganizationData {
|
||||||
this.useTotp = response.useTotp;
|
this.useTotp = response.useTotp;
|
||||||
this.use2fa = response.use2fa;
|
this.use2fa = response.use2fa;
|
||||||
this.useApi = response.useApi;
|
this.useApi = response.useApi;
|
||||||
|
this.useBusinessPortal = response.useBusinessPortal;
|
||||||
this.selfHost = response.selfHost;
|
this.selfHost = response.selfHost;
|
||||||
this.usersGetPremium = response.usersGetPremium;
|
this.usersGetPremium = response.usersGetPremium;
|
||||||
this.seats = response.seats;
|
this.seats = response.seats;
|
||||||
|
|
|
@ -16,6 +16,7 @@ export class Organization {
|
||||||
useTotp: boolean;
|
useTotp: boolean;
|
||||||
use2fa: boolean;
|
use2fa: boolean;
|
||||||
useApi: boolean;
|
useApi: boolean;
|
||||||
|
useBusinessPortal: boolean;
|
||||||
selfHost: boolean;
|
selfHost: boolean;
|
||||||
usersGetPremium: boolean;
|
usersGetPremium: boolean;
|
||||||
seats: number;
|
seats: number;
|
||||||
|
@ -39,6 +40,7 @@ export class Organization {
|
||||||
this.useTotp = obj.useTotp;
|
this.useTotp = obj.useTotp;
|
||||||
this.use2fa = obj.use2fa;
|
this.use2fa = obj.use2fa;
|
||||||
this.useApi = obj.useApi;
|
this.useApi = obj.useApi;
|
||||||
|
this.useBusinessPortal = obj.useBusinessPortal;
|
||||||
this.selfHost = obj.selfHost;
|
this.selfHost = obj.selfHost;
|
||||||
this.usersGetPremium = obj.usersGetPremium;
|
this.usersGetPremium = obj.usersGetPremium;
|
||||||
this.seats = obj.seats;
|
this.seats = obj.seats;
|
||||||
|
|
|
@ -13,6 +13,7 @@ export class ProfileOrganizationResponse extends BaseResponse {
|
||||||
useTotp: boolean;
|
useTotp: boolean;
|
||||||
use2fa: boolean;
|
use2fa: boolean;
|
||||||
useApi: boolean;
|
useApi: boolean;
|
||||||
|
useBusinessPortal: boolean;
|
||||||
selfHost: boolean;
|
selfHost: boolean;
|
||||||
usersGetPremium: boolean;
|
usersGetPremium: boolean;
|
||||||
seats: number;
|
seats: number;
|
||||||
|
@ -34,6 +35,7 @@ export class ProfileOrganizationResponse extends BaseResponse {
|
||||||
this.useTotp = this.getResponseProperty('UseTotp');
|
this.useTotp = this.getResponseProperty('UseTotp');
|
||||||
this.use2fa = this.getResponseProperty('Use2fa');
|
this.use2fa = this.getResponseProperty('Use2fa');
|
||||||
this.useApi = this.getResponseProperty('UseApi');
|
this.useApi = this.getResponseProperty('UseApi');
|
||||||
|
this.useBusinessPortal = this.getResponseProperty('UseBusinessPortal');
|
||||||
this.selfHost = this.getResponseProperty('SelfHost');
|
this.selfHost = this.getResponseProperty('SelfHost');
|
||||||
this.usersGetPremium = this.getResponseProperty('UsersGetPremium');
|
this.usersGetPremium = this.getResponseProperty('UsersGetPremium');
|
||||||
this.seats = this.getResponseProperty('Seats');
|
this.seats = this.getResponseProperty('Seats');
|
||||||
|
|
Loading…
Reference in New Issue