streamdeck-obs-replay/obsws/events_recording.go

41 lines
1.2 KiB
Go

package obsws
// This file is automatically generated.
// https://github.com/christopher-dG/go-obs-websocket/blob/master/codegen/protocol.py
// RecordingStartingEvent : A request to start recording has been issued.
//
// Since obs-websocket version: 0.3.
//
// https://github.com/Palakis/obs-websocket/blob/4.3-maintenance/docs/generated/protocol.md#recordingstarting
type RecordingStartingEvent struct {
_event `json:",squash"`
}
// RecordingStartedEvent : Recording started successfully.
//
// Since obs-websocket version: 0.3.
//
// https://github.com/Palakis/obs-websocket/blob/4.3-maintenance/docs/generated/protocol.md#recordingstarted
type RecordingStartedEvent struct {
_event `json:",squash"`
}
// RecordingStoppingEvent : A request to stop recording has been issued.
//
// Since obs-websocket version: 0.3.
//
// https://github.com/Palakis/obs-websocket/blob/4.3-maintenance/docs/generated/protocol.md#recordingstopping
type RecordingStoppingEvent struct {
_event `json:",squash"`
}
// RecordingStoppedEvent : Recording stopped successfully.
//
// Since obs-websocket version: 0.3.
//
// https://github.com/Palakis/obs-websocket/blob/4.3-maintenance/docs/generated/protocol.md#recordingstopped
type RecordingStoppedEvent struct {
_event `json:",squash"`
}