BotSharp/src/Plugins/BotSharp.Plugin.Twilio/Models/ConversationalVoiceResponse.cs
2025-04-21 09:25:13 -05:00

19 lines
543 B
C#

namespace BotSharp.Plugin.Twilio.Models;
public class ConversationalVoiceResponse
{
public string AgentId { get; set; } = null!;
public string ConversationId { get; set; } = null!;
public List<string> SpeechPaths { get; set; } = [];
public string? Text { get; set; }
public string CallbackPath { get; set; }
public bool ActionOnEmptyResult { get; set; }
public string Hints { get; set; }
/// <summary>
/// The Phone Number to transfer to
/// </summary>
public string? TransferTo { get; set; }
}