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