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