using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayTradePayResponse.
///
public class AlipayTradePayResponse : AopResponse
{
///
/// 买家支付宝账号
///
[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("gmt_payment")]
public string GmtPayment { 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; }
///
/// 88.88
///
[XmlElement("receipt_amount")]
public string ReceiptAmount { get; set; }
///
/// 交易金额
///
[XmlElement("total_amount")]
public string TotalAmount { get; set; }
///
/// 支付宝交易号
///
[XmlElement("trade_no")]
public string TradeNo { get; set; }
}
}