using System; using System.Xml.Serialization; using System.Collections.Generic; using Aop.Api.Domain; namespace Aop.Api.Response { /// /// AlipayTradeQueryResponse. /// public class AlipayTradeQueryResponse : AopResponse { /// /// 支付宝店铺编号 /// [XmlElement("alipay_store_id")] public string AlipayStoreId { get; set; } /// /// 买家支付宝账号 /// [XmlElement("buyer_logon_id")] public string BuyerLogonId { get; set; } /// /// 买家实付金额 /// [XmlElement("buyer_pay_amount")] public string BuyerPayAmount { get; set; } /// /// 资金单据信息的集合 /// [XmlArray("fund_bill_list")] [XmlArrayItem("trade_fund_bill")] public List FundBillList { get; set; } /// /// 交易中用户支付的可开具发票的金额 /// [XmlElement("invoice_amount")] public string InvoiceAmount { get; set; } /// /// 买家支付宝用户号 /// [XmlElement("open_id")] public string OpenId { get; set; } /// /// 商家订单号 /// [XmlElement("out_trade_no")] public string OutTradeNo { get; set; } /// /// 积分支付的金额 /// [XmlElement("point_amount")] public string PointAmount { get; set; } /// /// 实收金额 /// [XmlElement("receipt_amount")] public string ReceiptAmount { get; set; } /// /// 本次交易打款给卖家的时间 /// [XmlElement("send_pay_date")] public string SendPayDate { get; set; } /// /// 商户门店编号 /// [XmlElement("store_id")] public string StoreId { get; set; } /// /// 商户机具终端编号 /// [XmlElement("terminal_id")] public string TerminalId { get; set; } /// /// 交易的订单金额 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } /// /// 交易状态 /// [XmlElement("trade_status")] public string TradeStatus { get; set; } } }