NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayTradeMergePrecreateMo...

33 lines
1.4 KiB
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>
/// AlipayTradeMergePrecreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayTradeMergePrecreateModel : AopObject
{
/// <summary>
/// 子订单详情
/// </summary>
[XmlArray("order_details")]
[XmlArrayItem("order_detail")]
public List<OrderDetail> OrderDetails { get; set; }
/// <summary>
/// 如果已经和支付宝约定要求子订单明细必须同时支付成功或者同时支付失败则必须传入此参数,且该参数必须在商户端唯一,否则可以不需要填。
/// </summary>
[XmlElement("out_merge_no")]
public string OutMergeNo { get; set; }
/// <summary>
/// 请求合并的所有订单允许的最晚付款时间逾期将关闭交易。取值范围1m15d。m-分钟h-小时d-天1c-当天1c-当天的情况下无论交易何时创建都在0点关闭。 该参数数值不接受小数点, 如 1.5h,可转换为 90m。 如果已经和支付宝约定要求子订单明细必须同时支付成功或者同时支付失败,则不需要填入该字段。
/// </summary>
[XmlElement("timeout_express")]
public string TimeoutExpress { get; set; }
}
}