using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInstserviceMessageNotifyModel Data Structure. /// [Serializable] public class AlipayEbppInstserviceMessageNotifyModel : AopObject { /// /// 账单机构缩写,广东移动,江苏电网 /// [XmlElement("bill_inst")] public string BillInst { get; set; } /// /// 如浙江电力,浙江移动等 /// [XmlElement("bill_inst_desc")] public string BillInstDesc { get; set; } /// /// 通知关键字,户号,手机号 /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 业务类型,通信,缴费,还款等动帐服务通知 /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 标准kv,json数据 /// [XmlElement("extend_data")] public string ExtendData { get; set; } /// /// 通知时间 /// [XmlElement("notify_date")] public string NotifyDate { get; set; } /// /// 通知描述 /// [XmlElement("notify_desc")] public string NotifyDesc { get; set; } /// /// 通知功能码 /// [XmlElement("notify_type")] public string NotifyType { get; set; } /// /// 二级业务类型,话费,流量,水费,电费等 /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }