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