namespace Hotline.Api.Realtimes
{
public static class RealtimeMethods
{
#region 通讯通知
///
/// 电话振铃通知
///
public static string Ring = "Ring";
///
/// 电话应答通知
///
public static string Answered = "Answered";
///
/// 电话挂断通知
///
public static string Bye= "Bye";
///
/// 小休审核通过通知
///
public static string RestApplyPass = "RestApplyPass";
///
/// 电话队列通知
///
public static string CallQueue = "CallQueue";
///
/// 回铃(去电)
///
public static string Alert = "Alert";
///
/// 话机空闲
///
public static string Idle = "Idle";
#endregion
#region 系统信息通知
///
/// 通知用户未读消息
///
public static string CircularRecord = "CircularRecord";
#endregion
}
}