using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayItemLimitPeriodInfo Data Structure. /// [Serializable] public class AlipayItemLimitPeriodInfo : AopObject { /// /// 区间范围枚举,分为: INCLUDE(包含) EXCLUDE(排除) /// [XmlElement("rule")] public string Rule { get; set; } /// /// 单位描述,分为: MINUTE(分钟) HOUR(小时) WEEK_DAY(星期几) DAY(日) WEEK(周) MONTH(月) ALL(整个销售周期) /// [XmlElement("unit")] public string Unit { get; set; } /// /// 区间范围值,参数类型为Number /// [XmlArray("value")] [XmlArrayItem("number")] public List Value { get; set; } } }