using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppInspectNotifyModel Data Structure.
///
[Serializable]
public class AlipayEbppInspectNotifyModel : AopObject
{
///
/// 引擎函数名称
///
[XmlElement("function_name")]
public string FunctionName { get; set; }
///
/// 任务id
///
[XmlElement("job_id")]
public string JobId { get; set; }
///
/// 检测日志链接
///
[XmlElement("log_url")]
public string LogUrl { get; set; }
///
/// 引擎检测结果
///
[XmlElement("result")]
public string Result { get; set; }
///
/// 任务执行状态
///
[XmlElement("status")]
public string Status { get; set; }
///
/// 时间节点描述
///
[XmlElement("timing")]
public string Timing { get; set; }
}
}