NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditEpSceneFulfillme...

37 lines
1.2 KiB
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>
/// ZhimaCreditEpSceneFulfillmentSyncModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditEpSceneFulfillmentSyncModel : 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>
/// 信用订单号即调用zhima.credit.ep.scene.agreement.use返回的信用订单号。
/// </summary>
[XmlElement("credit_order_no")]
public string CreditOrderNo { get; set; }
/// <summary>
/// 商户请求订单号,必须唯一。用于唯一标识商户的一笔履约调用。
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
}
}