using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsSceneInsserviceprodSerprogressSyncModel Data Structure.
///
[Serializable]
public class AlipayInsSceneInsserviceprodSerprogressSyncModel : AopObject
{
///
/// 蚂蚁服务合约编号
///
[XmlElement("ant_ser_contract_no")]
public string AntSerContractNo { get; set; }
///
/// 蚂蚁服务产品号
///
[XmlElement("ant_ser_prod_no")]
public string AntSerProdNo { get; set; }
///
/// 扩展信息,JSON字符串格式。该接口为通用接口,需要和增值服务中台的开发同学根据不同的业务约定不同的字段。
///
[XmlElement("biz_data")]
public string BizData { get; set; }
///
/// 状态变更时间
///
[XmlElement("change_time")]
public string ChangeTime { get; set; }
///
/// 外部业务号
///
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
///
/// 服务业务单号
///
[XmlElement("ser_biz_no")]
public string SerBizNo { get; set; }
///
/// 服务业务类型
///
[XmlElement("ser_biz_type")]
public string SerBizType { get; set; }
///
/// 状态
///
[XmlElement("status")]
public string Status { get; set; }
}
}