File: xx_generated.scene_items.sourceorderchanged.go

package info (click to toggle)
golang-github-andreykaipov-goobs 0.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, trixie
  • size: 1,228 kB
  • sloc: makefile: 32
file content (24 lines) | stat: -rw-r--r-- 551 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
// This file has been automatically generated. Don't edit it.

package events

/*
SourceOrderChanged represents the event body for the "SourceOrderChanged" event.
Since v4.0.0.
*/
type SourceOrderChanged struct {
	EventBasic

	SceneItems []*SceneItem `json:"scene-items,omitempty"`

	// Name of the scene where items have been reordered.
	SceneName string `json:"scene-name,omitempty"`
}

type SceneItem struct {
	// Scene item unique ID
	ItemId int `json:"item-id,omitempty"`

	// Item source name
	SourceName string `json:"source-name,omitempty"`
}