You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
780 B
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEbppPdeductSignCancelResponse.
/// </summary>
public class AlipayEbppPdeductSignCancelResponse : AopResponse
{
/// <summary>
/// 支付宝代扣协议ID
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 支付宝协议状态。解约成功则返回success
/// </summary>
[XmlElement("agreement_status")]
public string AgreementStatus { get; set; }
/// <summary>
/// 商户代扣协议ID
/// </summary>
[XmlElement("out_agreement_id")]
public string OutAgreementId { get; set; }
}
}