37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
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; }
|
||
}
|
||
}
|