using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasRemitBeneficialinfoCertifyModel Data Structure. /// [Serializable] public class AlipayOverseasRemitBeneficialinfoCertifyModel : AopObject { /// /// 中文名 /// [XmlElement("chinese_full_name")] public string ChineseFullName { get; set; } /// /// 用户的名,拼音 /// [XmlElement("first_name")] public string FirstName { get; set; } /// /// 用户的姓,拼音 /// [XmlElement("last_name")] public string LastName { get; set; } /// /// 登录ID /// [XmlElement("logon_id")] public string LogonId { get; set; } /// /// 用户中间的名字 /// [XmlElement("middle_name")] public string MiddleName { get; set; } /// /// 汇款金额 /// [XmlElement("order_amount")] public string OrderAmount { get; set; } /// /// 汇款金额的币种 /// [XmlElement("order_currency")] public string OrderCurrency { get; set; } /// /// 接收端的mid /// [XmlElement("receiver_mid")] public string ReceiverMid { get; set; } /// /// 发端的mid /// [XmlElement("sender_mid")] public string SenderMid { get; set; } } }