using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAgreementExecutionplanModifyModel Data Structure.
///
[Serializable]
public class AlipayUserAgreementExecutionplanModifyModel : AopObject
{
///
/// 周期性扣款产品,授权免密支付协议号
///
[XmlElement("agreement_no")]
public string AgreementNo { get; set; }
///
/// 商户下一次扣款时间
///
[XmlElement("deduct_time")]
public string DeductTime { get; set; }
///
/// 具体修改原因
///
[XmlElement("memo")]
public string Memo { get; set; }
}
}