namespace Asterisk.NET.Manager.Event
{
///
/// An AgentCompleteEvent is triggered when at the end of a call if the caller was connected to an agent.
///
public class AgentCompleteEvent : AbstractAgentEvent
{
private long holdTime;
private string reason;
private long talkTime;
///
/// Get/Set the amount of time the caller was on hold.
///
public long HoldTime
{
get { return holdTime; }
set { this.holdTime = value; }
}
///
/// Get/Set the amount of time the caller talked to the agent.
///
public long TalkTime
{
get { return talkTime; }
set { this.talkTime = value; }
}
///
/// Get/Set if the agent or the caller terminated the call.
///
public string Reason
{
get { return reason; }
set { this.reason = value; }
}
public AgentCompleteEvent(ManagerConnection source)
: base(source)
{ }
}
}