BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Models/ConversationalVoiceResponse.cs

19 lines
543 B
C#
Raw Normal View History

2024-11-12 22:51:33 +00:00
namespace BotSharp.Plugin.Twilio.Models;
public class ConversationalVoiceResponse
{
2025-03-21 14:17:21 +00:00
public string AgentId { get; set; } = null!;
2025-03-14 20:08:34 +00:00
public string ConversationId { get; set; } = null!;
2024-11-12 22:51:33 +00:00
public List<string> SpeechPaths { get; set; } = [];
public string? Text { get; set; }
2024-11-12 22:51:33 +00:00
public string CallbackPath { get; set; }
public bool ActionOnEmptyResult { get; set; }
public string Hints { get; set; }
2025-03-17 22:09:02 +00:00
/// <summary>
/// The Phone Number to transfer to
/// </summary>
public string? TransferTo { get; set; }
2024-11-12 22:51:33 +00:00
}