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