using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayContract Data Structure. /// [Serializable] public class AlipayContract : AopObject { /// /// 支付宝用户ID /// [XmlElement("alipay_user_id")] public string AlipayUserId { get; set; } /// /// 订购的应用名称,有效时间。 /// [XmlElement("contract_content")] public string ContractContent { get; set; } /// /// 订购的失效时间 /// [XmlElement("end_time")] public string EndTime { get; set; } /// /// 订购URL。在sign返回false时返回应用的订购地址,可以引导用户订购。 /// [XmlElement("page_url")] public string PageUrl { get; set; } /// /// 订购的生效时间 /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// 是否订购的标识。true:代表已订购。 /// [XmlElement("subscribe")] public bool Subscribe { get; set; } } }