NewGaoKaoApi/PaymentSDK/AliPay/Domain/FulfillmentInfo.cs

31 lines
983 B
C#
Raw 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>
/// FulfillmentInfo Data Structure.
/// </summary>
[Serializable]
public class FulfillmentInfo : AopObject
{
/// <summary>
/// 特定业务场景传输的扩展参数以JSON形式传输。具体业务场景需要传入参数请参考<a href="https://docs.open.alipay.com/11270#s3">业务场景传输的扩展参数</a>
/// </summary>
[XmlElement("biz_ext_param")]
public string BizExtParam { get; set; }
/// <summary>
/// 业务时间,日期格式为 yyyy-MM-dd HH:mm:ss
/// </summary>
[XmlElement("biz_time")]
public string BizTime { get; set; }
/// <summary>
/// 商户请求订单号,必须唯一。用于唯一标识商户的一笔履约调用。
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
}
}