asternet/Asterisk.2013/Asterisk.NET/Manager/Event/AgentRingNoAnswerEvent.cs

86 lines
2.6 KiB
C#
Raw Normal View History

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