src/app/controller/shared/controller.model.ts
        
| Properties | 
| 
 | 
| constructor(name, cluster, liveInstance, sessionId, version) | ||||||||||||
| 
                                    Parameters :
                                     
 | 
| Readonly clusterName | 
| Type : string | 
| Readonly helixVersion | 
| Type : string | 
| Readonly liveInstance | 
| Type : string | 
| Readonly name | 
| Type : string | 
| Readonly sessionId | 
| Type : string | 
export class Controller {
  readonly name: string;
  readonly clusterName: string;
  readonly liveInstance: string;
  readonly sessionId: string;
  readonly helixVersion: string;
  constructor(name, cluster, liveInstance, sessionId, version) {
    this.name = name;
    this.clusterName = cluster;
    this.liveInstance = liveInstance;
    this.sessionId = sessionId;
    this.helixVersion = version;
  }
}