From f1d9839d24e96e625f13420e991bbbc5928d5f6f Mon Sep 17 00:00:00 2001 From: aterentiev Date: Fri, 19 Jan 2024 09:51:15 -0500 Subject: [PATCH] Add isVisible property to AceData --- libraries/Microsoft.Bot.Schema/SharePoint/AceData.cs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/libraries/Microsoft.Bot.Schema/SharePoint/AceData.cs b/libraries/Microsoft.Bot.Schema/SharePoint/AceData.cs index b5640c8951..da590145cf 100644 --- a/libraries/Microsoft.Bot.Schema/SharePoint/AceData.cs +++ b/libraries/Microsoft.Bot.Schema/SharePoint/AceData.cs @@ -84,6 +84,13 @@ public enum AceCardSize [JsonProperty(PropertyName = "iconProperty")] public string IconProperty { get; set; } + /// + /// Gets or sets the visibility of the Adaptive Card Extension. + /// + /// The value is the flag that indicates if the Adaptive Card Extension is visible. Default to true. + [JsonProperty(PropertyName = "isVisible")] + public bool? IsVisible { get; set; } + /// /// Gets or Sets the property bag of type . ///