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; } /// /// 买家在支付宝的用户id /// [XmlElement("buyer_user_id")] public string BuyerUserId { get; set; } /// /// 支付宝卡余额 /// [XmlElement("card_balance")] public string CardBalance { get; set; } /// /// 本次交易支付所使用的单品券优惠的商品优惠信息 /// [XmlElement("discount_goods_detail")] public string DiscountGoodsDetail { 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; } /// /// 实收金额 /// [XmlElement("receipt_amount")] public string ReceiptAmount { get; set; } /// /// 发生支付交易的商户门店名称 /// [XmlElement("store_name")] public string StoreName { get; set; } /// /// 交易金额 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 支付宝交易号 /// [XmlElement("trade_no")] public string TradeNo { get; set; } /// /// 本交易支付时使用的所有优惠券信息 /// [XmlArray("voucher_detail_list")] [XmlArrayItem("voucher_detail")] public List VoucherDetailList { get; set; } } }