1 2 3 4 5 6 7 8 9
export class AicZone { id: string; name: string; constructor(serviceJson){ this.id = serviceJson["zone-id"]; this.name = serviceJson["zone-name"]; } }