From bca0403fe983dbbeba5b62f97276e2c8c3183621 Mon Sep 17 00:00:00 2001 From: Yanan Wang <103942@smsassist.com> Date: Sat, 28 Oct 2023 21:03:28 -0500 Subject: [PATCH] Default messaging_type in RichContent as "RESPONSE" --- .../Messaging/Models/RichContent/RichContent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs b/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs index fb6a121f..221dc96d 100644 --- a/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs +++ b/src/Infrastructure/BotSharp.Abstraction/Messaging/Models/RichContent/RichContent.cs @@ -7,7 +7,7 @@ namespace BotSharp.Abstraction.Messaging.Models.RichContent /// RESPONSE /// [JsonPropertyName("messaging_type")] - public string? MessagingType { get; set; } + public string MessagingType => "RESPONSE"; public T Message { get; set; } } }