File tree Expand file tree Collapse file tree 4 files changed +116
-0
lines changed
streamerbot/3.api/3.csharp/5.enums Expand file tree Collapse file tree 4 files changed +116
-0
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ title : Platform
3+ description : C# enum definition for Platform
4+ name : Platform
5+ ---
6+
7+ ## Namespace
8+
9+ ` Streamer.bot.Plugin.Interface.Enums `
10+
11+ ## Definition
12+
13+ ``` cs [Platform.cs]
14+ public enum Platform
15+ {
16+ Twitch ,
17+ YouTube ,
18+ Trovo ,
19+ Kick
20+ }
21+ ```
22+
23+ ## Values
24+
25+ | Name | Description |
26+ | ------------------ | -------------------------- |
27+ | ` Platform.Twitch ` | Twitch streaming platform |
28+ | ` Platform.YouTube ` | YouTube streaming platform |
29+ | ` Platform.Trovo ` | Trovo streaming platform |
30+ | ` Platform.Kick ` | Kick streaming platform |
Original file line number Diff line number Diff line change 1+ ---
2+ title : StreamlabsDesktopOutputType
3+ description : C# enum definition for StreamlabsDesktopOutputType
4+ name : StreamlabsDesktopOutputType
5+ ---
6+
7+ ## Namespace
8+
9+ ` Streamer.bot.Plugin.Interface.Enums `
10+
11+ ## Definition
12+
13+ ``` cs [StreamlabsDesktopOutputType.cs]
14+ public enum StreamlabsDesktopOutputType
15+ {
16+ Both ,
17+ Horizontal ,
18+ Vertical
19+ }
20+ ```
21+
22+ ## Values
23+
24+ | Name | Description |
25+ | ---------------------------------------- | ------------------------------------------------ |
26+ | ` StreamlabsDesktopOutputType.Both ` | Output both horizontal and vertical orientations |
27+ | ` StreamlabsDesktopOutputType.Horizontal ` | Output only horizontal orientation |
28+ | ` StreamlabsDesktopOutputType.Vertical ` | Output only vertical orientation |
Original file line number Diff line number Diff line change 1+ ---
2+ title : TwitchBlockContext
3+ description : C# enum definition for TwitchBlockContext
4+ name : TwitchBlockContext
5+ ---
6+
7+ ## Namespace
8+
9+ ` Streamer.bot.Plugin.Interface.Enums `
10+
11+ ## Definition
12+
13+ ``` cs [TwitchBlockContext.cs]
14+ public enum TwitchBlockContext
15+ {
16+ None ,
17+ Chat ,
18+ Whisper
19+ }
20+ ```
21+
22+ ## Values
23+
24+ | Name | Description |
25+ | ---------------------------- | -------------------------------------------- |
26+ | ` TwitchBlockContext.None ` | No specific context |
27+ | ` TwitchBlockContext.Chat ` | The block was initiated in a chat context |
28+ | ` TwitchBlockContext.Whisper ` | The block was initiated in a whisper context |
Original file line number Diff line number Diff line change 1+ ---
2+ title : TwitchBlockReason
3+ description : C# enum definition for TwitchBlockReason
4+ name : TwitchBlockReason
5+ ---
6+
7+ ## Namespace
8+
9+ ` Streamer.bot.Plugin.Interface.Enums `
10+
11+ ## Definition
12+
13+ ``` cs [TwitchBlockReason.cs]
14+ public enum TwitchBlockReason
15+ {
16+ None ,
17+ Harassment ,
18+ Spam ,
19+ Other
20+ }
21+ ```
22+
23+ ## Values
24+
25+ | Name | Description |
26+ | ------------------------------ | --------------------------------------- |
27+ | ` TwitchBlockReason.None ` | No specific reason |
28+ | ` TwitchBlockReason.Harassment ` | The user was blocked for harassment |
29+ | ` TwitchBlockReason.Spam ` | The user was blocked for spamming |
30+ | ` TwitchBlockReason.Other ` | The user was blocked for another reason |
You can’t perform that action at this time.
0 commit comments