using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEbppPdeductSignAddResponse. /// public class AlipayEbppPdeductSignAddResponse : AopResponse { /// /// 支付宝代扣协议ID /// [JsonProperty("agreement_id")] public string AgreementId { get; set; } /// /// 支付宝协议状态。签约成功则返回success /// [JsonProperty("agreement_status")] public string AgreementStatus { get; set; } /// /// 扩展参数,可为空 /// [JsonProperty("extend_field")] public string ExtendField { get; set; } /// /// 通知方式设置。 /// [JsonProperty("notify_config")] public string NotifyConfig { get; set; } /// /// 商户生成的代扣协议ID /// [JsonProperty("out_agreement_id")] public string OutAgreementId { get; set; } /// /// 支付方式设置 /// [JsonProperty("pay_config")] public List PayConfig { get; set; } /// /// 签约时间 /// [JsonProperty("sign_date")] public string SignDate { get; set; } } }