using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayEbppCommonNotifySendModel Data Structure.
///
[Serializable]
public class AlipayEbppCommonNotifySendModel : AopObject
{
///
/// 水电燃等机构为用户分配的户号
///
[XmlElement("bill_key")]
public string BillKey { get; set; }
///
/// 业务类型的缩写: JF-缴费
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 出账机构的缩写
///
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
///
/// 特定通知类型可能需要提供扩展信息,用JSON字符串描述
///
[XmlElement("extend_data")]
public string ExtendData { get; set; }
///
/// 机构为用户发送通知的类型,需要与支付宝协商确定
///
[XmlElement("notify_type")]
public string NotifyType { get; set; }
///
/// 子业务类型英文名称: ELECTRIC-电力 GAS-燃气 WATER-水
///
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
///
/// 支付宝用户id,可空,用于特定场景下向指定用户发送通知
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}