We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f239f4b commit 72428caCopy full SHA for 72428ca
1 file changed
source/src/Slackbot.Net.Endpoints/Models/Events/MessageEvent.cs
@@ -8,4 +8,13 @@ public class MessageEvent : SlackEvent
8
public string Ts { get; set; }
9
public string Event_Ts { get; set; }
10
public string Channel_Type { get; set; }
11
+
12
+ public string? Bot_id { get; set; }
13
+ public BotProfile Bot_Profile { get; set; }
14
+}
15
16
+public class BotProfile
17
+{
18
+ public string Id { get; set; }
19
+ public string Name { get; set; }
20
}
0 commit comments