Skip to content

Commit 6e2d02c

Browse files
docs: add additional enums
1 parent 3acc52a commit 6e2d02c

File tree

4 files changed

+116
-0
lines changed

4 files changed

+116
-0
lines changed
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 |
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 |
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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 |
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 |

0 commit comments

Comments
 (0)