NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSupplychainTrad...

37 lines
1.1 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>
/// MybankCreditSupplychainTradePayConfirmModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainTradePayConfirmModel : AopObject
{
/// <summary>
/// 买家身份信息
/// </summary>
[XmlElement("buyer")]
public Member Buyer { get; set; }
/// <summary>
/// 外部订单号格式机构ipRoleId_外部订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 预付订单号,在预付场景为必填,其他场景视情况而定
/// </summary>
[XmlElement("prepay_order_no")]
public string PrepayOrderNo { get; set; }
/// <summary>
/// 幂等编号用于幂等控制格式机构ipRoleId_yyyymmddhhmmss_8位uniqId
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}