aboutsummaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/tenant.ts
blob: 26ff69df5a27b21b8285c781dc639449f0e365b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class Tenant {
  id: string;
  name: string;
  isPermitted: boolean;
  cloudOwner: string;

  constructor(serviceJson){
    this.id = serviceJson["tenantID"];
    this.name = serviceJson["tenantName"];
    this.isPermitted = serviceJson["is-permitted"];
    this.cloudOwner = serviceJson["cloudOwner"];
  }
}