featureSetUpdated
Sample payload
{
"type": "featureSetUpdated",
"data": {
"state": {
//Look at the features property for full payload description
}
}
}Sample subscription code
sambaFrame.on('featureSetUpdated', (event) => {
const features = event.data.state;
//Read some properties from the updated feature state
console.log('Chat state is:', features['chat']);
});Last updated