UNPKG

matterbridge-roborock-vacuum-plugin

Version:
19 lines 593 B
/** Application model: Room with full map context */ export class MapRoom { id; iot_name_id; iot_name; alternativeId; iot_map_id; constructor(id, iot_name_id, iot_name, alternativeId, iot_map_id) { this.id = id; this.iot_name_id = iot_name_id; this.iot_name = iot_name; this.alternativeId = alternativeId; this.iot_map_id = iot_map_id; } static fromDto(dto, iot_name) { return new MapRoom(dto.id, dto.iot_name_id, iot_name, `${dto.id}${dto.tag ?? ''}`, dto.iot_map_id); } } //# sourceMappingURL=MapRoom.js.map