From 5add456ba5aba74061bc653b841faa0663331dd7 Mon Sep 17 00:00:00 2001 From: Alex Terentiev Date: Fri, 19 Jan 2024 14:16:39 -0500 Subject: [PATCH] Add isVisible property to AceData (#6730) Co-authored-by: aterentiev --- 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 . ///