NewGaoKaoApi/PaymentSDK/AliPay/Domain/DelayInfo.cs

25 lines
800 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;
namespace Aop.Api.Domain
{
/// <summary>
/// DelayInfo Data Structure.
/// </summary>
[Serializable]
public class DelayInfo : AopObject
{
/// <summary>
/// 延迟类型,目前支持以下类型 ABSOLUTELY按绝对值延迟 BYDAY按天延迟
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
/// <summary>
/// 延迟值,单位分钟 按绝对值延迟延迟24*60 (1天)表示当日08:00:00领到的券要到隔日的08:00:00才能使用 按天延迟延迟24*60(1天)表示当日08:00:00领到的券隔日00:00:00点就可以用
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}