We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f8a18b0 + 997da04 commit 58ee544Copy full SHA for 58ee544
1 file changed
src/Infrastructure/BotSharp.OpenAPI/ViewModels/Agents/Request/RoutingRuleUpdateModel.cs
@@ -1,4 +1,5 @@
1
using BotSharp.Abstraction.Routing.Models;
2
+using System.Text.Json.Serialization;
3
4
namespace BotSharp.OpenAPI.ViewModels.Agents;
5
@@ -7,6 +8,7 @@ public class RoutingRuleUpdateModel
7
8
public string? Field { get; set; }
9
public string? Description { get; set; }
10
public string? Type { get; set; }
11
+ [JsonPropertyName("field_type")]
12
public string? FieldType { get; set; }
13
public bool Required { get; set; }
14
public string? RedirectTo { get; set; }
0 commit comments