using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayEbppPdeductAsyncPayModel Data Structure. /// [Serializable] public class AlipayEbppPdeductAsyncPayModel : AopObject { /// /// 分配给外部机构发起扣款时的渠道码。朗新为LANGXIN /// [XmlElement("agent_channel")] public string AgentChannel { get; set; } /// /// 二级渠道码,预留字段 /// [XmlElement("agent_code")] public string AgentCode { get; set; } /// /// 支付宝代扣协议Id /// [XmlElement("agreement_id")] public string AgreementId { get; set; } /// /// 账期 /// [XmlElement("bill_date")] public string BillDate { get; set; } /// /// 户号 /// [XmlElement("bill_key")] public string BillKey { get; set; } /// /// 扩展字段 /// [XmlElement("extend_field")] public string ExtendField { get; set; } /// /// 滞纳金 /// [XmlElement("fine_amount")] public string FineAmount { get; set; } /// /// 备注信息 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 商户外部业务流水号 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 扣款金额,支付总金额,包含滞纳金 /// [XmlElement("pay_amount")] public string PayAmount { get; set; } /// /// 商户partnerId /// [XmlElement("pid")] public string Pid { get; set; } /// /// 用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }