97 lines
2.5 KiB
C#
97 lines
2.5 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOverseasRemitBeneficialinfoQueryModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOverseasRemitBeneficialinfoQueryModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 相对于汇率的基准货币
|
||
/// </summary>
|
||
[XmlElement("base_currency")]
|
||
public string BaseCurrency { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇率
|
||
/// </summary>
|
||
[XmlElement("exchange_rate")]
|
||
public string ExchangeRate { get; set; }
|
||
|
||
/// <summary>
|
||
/// 登录ID
|
||
/// </summary>
|
||
[XmlElement("logon_id")]
|
||
public string LogonId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 外部单据号
|
||
/// </summary>
|
||
[XmlElement("out_biz_no")]
|
||
public string OutBizNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 收款的金额
|
||
/// </summary>
|
||
[XmlElement("receive_amount")]
|
||
public string ReceiveAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 收款的金额币种
|
||
/// </summary>
|
||
[XmlElement("receive_currency")]
|
||
public string ReceiveCurrency { get; set; }
|
||
|
||
/// <summary>
|
||
/// 接收端的ID
|
||
/// </summary>
|
||
[XmlElement("receiver_mid")]
|
||
public string ReceiverMid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇款用途
|
||
/// </summary>
|
||
[XmlElement("remit_purpose")]
|
||
public string RemitPurpose { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇款金额
|
||
/// </summary>
|
||
[XmlElement("send_amount")]
|
||
public string SendAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇款人国家,与sender_nationality不能同时为空
|
||
/// </summary>
|
||
[XmlElement("send_country")]
|
||
public string SendCountry { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇款币种
|
||
/// </summary>
|
||
[XmlElement("send_currency")]
|
||
public string SendCurrency { get; set; }
|
||
|
||
/// <summary>
|
||
/// 发端ID
|
||
/// </summary>
|
||
[XmlElement("sender_mid")]
|
||
public string SenderMid { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇款人姓名
|
||
/// </summary>
|
||
[XmlElement("sender_name")]
|
||
public string SenderName { get; set; }
|
||
|
||
/// <summary>
|
||
/// 汇款人国籍,与send_country不能同时为空
|
||
/// </summary>
|
||
[XmlElement("sender_nationality")]
|
||
public string SenderNationality { get; set; }
|
||
}
|
||
}
|