From 8df609ad2c176a8ed24a25f287e465bfd6772ae2 Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Fri, 12 Apr 2024 11:37:38 -0500 Subject: [PATCH] add post action disclaimer --- .../Messaging/Models/RichContent/ElementButton.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/ElementButton.cs b/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/ElementButton.cs index bc13660a..294b1835 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/ElementButton.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/ElementButton.cs @@ -20,4 +20,7 @@ public class ElementButton [JsonPropertyName("is_secondary")] public bool IsSecondary { get; set; } + + [JsonPropertyName("post_action_disclaimer")] + public string? PostActionDisclaimer { get; set; } }