1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// This file has been automatically generated. Don't edit it.
package events
/*
SourceAudioMixersChanged represents the event body for the "SourceAudioMixersChanged" event.
Since v4.6.0.
*/
type SourceAudioMixersChanged struct {
EventBasic
// Raw mixer flags (little-endian, one bit per mixer) as an hexadecimal value
HexMixersValue string `json:"hexMixersValue,omitempty"`
Mixers []*Mixer `json:"mixers,omitempty"`
// Source name
SourceName string `json:"sourceName,omitempty"`
}
type Mixer struct {
// Routing status
Enabled bool `json:"enabled,omitempty"`
// Mixer number
Id int `json:"id,omitempty"`
}
|