using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOverseasRemitFxtradeorderCreateModel Data Structure. /// [Serializable] public class AlipayOverseasRemitFxtradeorderCreateModel : AopObject { /// /// the unique id on block chain generated by the caller to represent this remit operation /// [XmlElement("bc_remit_id")] public string BcRemitId { get; set; } /// /// currency pair /// [XmlElement("currency_pair")] public string CurrencyPair { get; set; } /// /// extended info /// [XmlElement("extend_info")] public string ExtendInfo { get; set; } /// /// fx trade orderId /// [XmlElement("fx_trade_order_id")] public string FxTradeOrderId { get; set; } /// /// fx trade side /// [XmlElement("fx_trade_side")] public string FxTradeSide { get; set; } /// /// the Mid of the receiver allocated by net. /// [XmlElement("receiver_mid")] public string ReceiverMid { get; set; } /// /// the Mid of the sender allocated by net. /// [XmlElement("sender_mid")] public string SenderMid { get; set; } /// /// { "currency":"CNY", "value":"100000" } /// [XmlElement("trans_amount")] public Money TransAmount { get; set; } } }