NewGaoKaoApi/PaymentSDK/AliPay/Domain/ControlInfo.cs

19 lines
621 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>
/// ControlInfo Data Structure.
/// </summary>
[Serializable]
public class ControlInfo : AopObject
{
/// <summary>
/// 订单超时时间逾期将关闭交易。取值范围1m15d。m-分钟h-小时d-天1c-当天1c-当天的情况下无论交易何时创建都在0点关闭。 该参数数值不接受小数点, 如 1.5h,可转换为 90m
/// </summary>
[XmlElement("timeout_express")]
public string TimeoutExpress { get; set; }
}
}