namespace BotSharp.Plugin.Twilio.Models; public class ConversationalVoiceResponse { public string ConversationId { get; set; } = null!; public List SpeechPaths { get; set; } = []; public string CallbackPath { get; set; } public bool ActionOnEmptyResult { get; set; } /// /// Timeout in seconds /// public int Timeout { get; set; } = 3; public string Hints { get; set; } /// /// The Phone Number to transfer to /// public string? TransferTo { get; set; } }