roomStateUpdated
Sample payload
{
"type": "roomStateUpdated",
"data": {
//Look at the roomState property for full payload description
}
}Sample subscription code
sambaFrame.on('roomStateUpdated', (event) => {
const data = event.data;
//Read some properties from the updated room state
//data.layout.mode
});Last updated