From 4b305c33ed9e75b9617e46800071e28592d32ac1 Mon Sep 17 00:00:00 2001 From: Joel Mut Date: Wed, 23 Oct 2024 14:50:25 -0300 Subject: [PATCH] Add SearchInvoke Dataset --- libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs b/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs index c176ccf7ce..172347818a 100644 --- a/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs +++ b/libraries/Microsoft.Bot.Schema/SearchInvokeValue.cs @@ -51,5 +51,14 @@ public class SearchInvokeValue /// [JsonProperty("context")] public object Context { get; set; } + + /// + /// Gets or sets the dataset to be queried to get the choices. + /// + /// + /// The dataset of this search invoke action value. + /// + [JsonProperty("dataset")] + public string Dataset { get; set; } } }