namespace AsterNET.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 { public AgentCompleteEvent(ManagerConnection source) : base(source) { } /// /// Get/Set the amount of time the caller was on hold. /// public long HoldTime { get; set; } /// /// Get/Set the amount of time the caller talked to the agent. /// public long TalkTime { get; set; } /// /// Get/Set if the agent or the caller terminated the call. /// public string Reason { get; set; } } }