using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// SpiVoiceCallback Data Structure.
///
[Serializable]
public class SpiVoiceCallback : AopObject
{
///
/// 阿里云语音编号
///
[XmlElement("call_id")]
public string CallId { get; set; }
///
/// 被叫电话
///
[XmlElement("callee")]
public string Callee { get; set; }
///
/// 通话时间
///
[XmlElement("duration")]
public long Duration { get; set; }
///
/// 通话结束时间
///
[XmlElement("end_time")]
public string EndTime { get; set; }
///
/// 数立内部业务编号
///
[XmlElement("out_id")]
public string OutId { get; set; }
///
/// 通话开始时间
///
[XmlElement("start_time")]
public string StartTime { get; set; }
///
/// 语音状态:200000-用户听完语音;200001-用户提前挂机未完整收听;200002-用户占线
///
[XmlElement("status_code")]
public string StatusCode { get; set; }
}
}