This repository has been archived by the owner on Jan 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
events_recording.go
58 lines (51 loc) · 1.75 KB
/
events_recording.go
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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.x-current/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.x-current/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.x-current/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.x-current/docs/generated/protocol.md#recordingstopped
type RecordingStoppedEvent struct {
_event `json:",squash"`
}
// RecordingPausedEvent : Current recording paused.
//
// Since obs-websocket version: 4.7.0.
//
// https://github.com/Palakis/obs-websocket/blob/4.x-current/docs/generated/protocol.md#recordingpaused
type RecordingPausedEvent struct {
_event `json:",squash"`
}
// RecordingResumedEvent : Current recording resumed.
//
// Since obs-websocket version: 4.7.0.
//
// https://github.com/Palakis/obs-websocket/blob/4.x-current/docs/generated/protocol.md#recordingresumed
type RecordingResumedEvent struct {
_event `json:",squash"`
}