streamdeck-obs-replay/obsws/events_recording.go
Tyler eca3834fd7
Some checks failed
continuous-integration/drone/push Build is failing
initial version
2020-01-14 23:32:53 -05:00

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"`
}