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.
2 parents 84042e5 + 99aba06 commit a208d30Copy full SHA for a208d30
source/src/Slackbot.Net.Endpoints/Models/Interactive/BlockActions/BlockAction.cs
@@ -15,5 +15,12 @@ public class BlockActionInteraction : Interaction
15
16
public class State
17
{
18
- public Dictionary<string, string> Values { get; set; } = [];
+ public Dictionary<string, Dictionary<string, SlackInputValue>> Values { get; set; }
19
+}
20
+
21
+public class SlackInputValue
22
+{
23
+ public string Type { get; set; }
24
+ public Option SelectedOption { get; set; }
25
+ public string Value { get; set; }
26
}
0 commit comments