hub.device.firmware.update.progress
- Informs the UI about the progress of an update to a device’s firmware.
				
				Edit
			
			| Field | Type | Required | Description | 
|---|---|---|---|
| device_id | string | + | Identifies the device receiving the firmware update. | 
| firmware_id | string | + | The version of the firmware. | 
| image | string | + | A link to the firmware binary/installation file. | 
| status | string | + | Installation progress. Can be . | 
| progress | string | – | Percentage complete. | 
				
				Edit
			
			
				
					{
    "id": "ui_broadcast",
    "msg_subclass": "hub.device.firmware.update.progress",
    "result": {
        "device_id": "<deviceId>",
        "firmware_id": "634.346.0",
        "image": "image.bin",
        "status": "in_progress",
        "progress": 10,         
        "error": null    
    }
}				
			
             
                                    