1 2 3 4 5 6 7 8 9 10 11
export class LcpRegion { id: string; name: string; isPermitted: boolean; constructor(serviceJson){ this.id = serviceJson["cloudRegionID"]; this.name = serviceJson["cloudRegionID"]; this.isPermitted = serviceJson["is-permitted"]; } }