protected async getById(roomId: string, appId: string): Promise<IRoom> {
        this.orch.debugLog(`The App ${appId} is getting the roomById: "${roomId}"`);

        // #TODO: #AppsEngineTypes - Remove explicit types and typecasts once the apps-engine definition/implementation mismatch is fixed.
        const promise: Promise<IRoom | undefined> = this.orch.getConverters()?.get('rooms').convertById(roomId);