using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Response { /// /// AlipayEbppPdeductSignCancelResponse. /// public class AlipayEbppPdeductSignCancelResponse : AopResponse { /// /// 支付宝代扣协议ID /// [JsonProperty("agreement_id")] public string AgreementId { get; set; } /// /// 支付宝协议状态。解约成功则返回success /// [JsonProperty("agreement_status")] public string AgreementStatus { get; set; } /// /// 商户代扣协议ID /// [JsonProperty("out_agreement_id")] public string OutAgreementId { get; set; } } }