using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace AsterNET.Manager.Event { /// /// Raised when a queue member is notified of a caller in the queue and fails to answer.
/// See https://wiki.asterisk.org/wiki/display/AST/Asterisk+16+ManagerEvent_AgentRingNoAnswer ///
public class AgentRingNoAnswerEvent : AbstractAgentVariables { /// /// Creates a new using the given . /// /// public AgentRingNoAnswerEvent(ManagerConnection source) : base(source) { } /// /// Gets or sets the queue. /// public string Queue { get; set; } /// /// Gets or sets the name of the agent. /// public string AgentName { get; set; } /// /// Gets or sets the agent called. /// public string AgentCalled { get; set; } /// /// Gets or sets the channel calling. /// public string ChannelCalling { get; set; } /// /// Gets or sets the destination channel. /// public string DestinationChannel { get; set; } /// /// Gets or sets the Caller*ID of the calling channel. /// public string CallerId { get; set; } /// /// Get/Set the Caller*ID number of the calling channel. /// public string CallerIdNum { get; set; } /// /// Get/Set the Caller*ID name of the calling channel. /// public string CallerIdName { get; set; } /// /// Gets or sets the context. /// public string Context { get; set; } /// /// Gets or sets the extension. /// public string Extension { get; set; } /// /// Gets or sets the priority. /// public string Priority { get; set; } /// /// Get/Set the amount of time the caller was on ring. /// public long RingTime { get; set; } } }