2014-01-08 14:16:39 +00:00
|
|
|
namespace AsterNET.Manager.Event
|
2013-01-18 15:55:50 +00:00
|
|
|
{
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A JoinEvent is triggered when a channel joines a queue.<br />
|
|
|
|
/// It is implemented in <code>apps/app_queue.c</code>
|
|
|
|
/// </summary>
|
|
|
|
public class JoinEvent : QueueEvent
|
|
|
|
{
|
|
|
|
public JoinEvent(ManagerConnection source)
|
|
|
|
: base(source)
|
|
|
|
{
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
|
2015-01-03 15:37:29 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the Caller*ID number of the channel that joined the queue if set.
|
|
|
|
/// If the channel has no caller id set "unknown" is returned.
|
|
|
|
/// </summary>
|
|
|
|
public string CallerId { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the Caller*ID name of the channel that joined the queue if set.
|
|
|
|
/// If the channel has no caller id set "unknown" is returned.
|
|
|
|
/// </summary>
|
|
|
|
public string CallerIdName { get; set; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Get/Set the position of the joined channel in the queue.
|
|
|
|
/// </summary>
|
|
|
|
public int Position { get; set; }
|
|
|
|
}
|
2013-01-18 15:55:50 +00:00
|
|
|
}
|