NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayItemLimitPeriodInfo.cs

33 lines
978 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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