Skip to content

Commit

Permalink
Add isVisible property to AceData (#6730)
Browse files Browse the repository at this point in the history
Co-authored-by: aterentiev <aterentiev@microsoft.com_odspmdb>
  • Loading branch information
AJIXuMuK and aterentiev committed Jan 19, 2024
1 parent cc34242 commit 2e8a6f8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions libraries/Microsoft.Bot.Schema/SharePoint/AceData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,13 @@ public enum AceCardSize
[JsonProperty(PropertyName = "iconProperty")]
public string IconProperty { get; set; }

/// <summary>
/// Gets or sets the visibility of the Adaptive Card Extension.
/// </summary>
/// <value>The value is the flag that indicates if the Adaptive Card Extension is visible. Default to true.</value>
[JsonProperty(PropertyName = "isVisible")]
public bool? IsVisible { get; set; }

/// <summary>
/// Gets or Sets the property bag of type <see cref="JObject"/>.
/// </summary>
Expand Down

0 comments on commit 2e8a6f8

Please sign in to comment.