using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppInstserviceDeductSignModel Data Structure. /// [Serializable] public class AlipayEbppInstserviceDeductSignModel : AopObject { /// /// 签约来源渠道,接入时与代扣约定 /// [XmlElement("agent_channel")] public string AgentChannel { get; set; } /// /// 签约来源渠道编码,接入时与代扣约定 /// [XmlElement("agent_code")] public string AgentCode { get; set; } /// /// 户号(缴费场景是户号,话费场景是手机号) /// [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; } /// /// PREPAID预付费,POSTPAID后付费 /// [XmlElement("pay_mode")] public string PayMode { get; set; } /// /// 二级业务类型(例如话费,流量,水费,电费) /// [XmlElement("sub_biz_type")] public string SubBizType { get; set; } /// /// 蚂蚁统一会员ID /// [XmlElement("user_id")] public string UserId { get; set; } /// /// 核身id /// [XmlElement("verify_id")] public string VerifyId { get; set; } } }