NewGaoKaoApi/PaymentSDK/AliPay/Domain/MybankCreditSupplychainPrep...

49 lines
1.5 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;
namespace Aop.Api.Domain
{
/// <summary>
/// MybankCreditSupplychainPrepaymentApplyModel Data Structure.
/// </summary>
[Serializable]
public class MybankCreditSupplychainPrepaymentApplyModel : AopObject
{
/// <summary>
/// 买家身份信息。
/// </summary>
[XmlElement("buyer")]
public Member Buyer { get; set; }
/// <summary>
/// 扩展字段
/// </summary>
[XmlElement("ext_data")]
public string ExtData { get; set; }
/// <summary>
/// 贷款支付金额,单位人民币元。
/// </summary>
[XmlElement("loan_pay_amount")]
public string LoanPayAmount { get; set; }
/// <summary>
/// 外部订单号格式机构ipRoleId_外部订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 接口幂等字段相同requestId请求系统默认认为是相同的请求。此处requestId要求的格式为"{机构IpRoleId}_{机构生成的唯一请求ID}"
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
/// <summary>
/// 客户自付金额,一般为订单首付,单位人民币元。
/// </summary>
[XmlElement("self_pay_amount")]
public string SelfPayAmount { get; set; }
}
}