Sonsino, Ofir (os0695) | ff76b5e | 2018-07-10 15:57:37 +0300 | [diff] [blame] | 1 | export class LcpRegionTenants { |
2 | id: string; | ||||
3 | tenantId: string; | ||||
4 | tenantName: string; | ||||
5 | isPermitted: boolean; | ||||
6 | |||||
7 | constructor(serviceJson){ | ||||
8 | this.id = serviceJson["cloudRegionID"]; | ||||
9 | this.tenantId = serviceJson["tenantID"]; | ||||
10 | this.tenantName = serviceJson["tenantName"]; | ||||
11 | this.isPermitted = serviceJson["is-permitted"]; | ||||
12 | } | ||||
13 | } |