using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInstserviceIdentityInitializeModel Data Structure. /// [Serializable] public class AlipayEbppInstserviceIdentityInitializeModel : AopObject { /// /// 户号(缴费场景是户号,话费场景是手机号) /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 业务类型(例如通信,缴费,还款) /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 代扣产品码(由技术同学分配) /// [XmlElement("ededuct_product_code")] public string EdeductProductCode { get; set; } /// /// 扩展字段(JSON格式) /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 机构ID(支付宝侧分配) /// [XmlElement("inst_id")] public string InstId { get; set; } /// /// 二级业务类型(例如话费,流量,水费,电费) /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }