File: xx_generated.sources.sourceaudiomixerschanged.go

package info (click to toggle)
golang-github-andreykaipov-goobs 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 1,228 kB
  • sloc: makefile: 32
file content (27 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
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"`
}