using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayUserAgreementTransferResponse. /// public class AlipayUserAgreementTransferResponse : AopResponse { /// /// 单次金额限制 /// [XmlElement("amount")] public string Amount { get; set; } /// /// 执行时间 /// [XmlElement("execute_time")] public string ExecuteTime { get; set; } /// /// 周期 /// [XmlElement("period")] public string Period { get; set; } /// /// 周期类型 /// [XmlElement("period_type")] public string PeriodType { get; set; } /// /// 总金额限制 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 总支付次数 /// [XmlElement("total_payments")] public string TotalPayments { get; set; } } }