using System.Collections.Generic; using Newtonsoft.Json; using Alipay.AopSdk.Core.Domain; namespace Alipay.AopSdk.Core.Response { /// /// AlipayTradePayResponse. /// public class AlipayTradePayResponse : AopResponse { /// /// 异步支付模式,先享后付业务会返回该参数,目前有三种值: ASYNC_DELAY_PAY(异步延时付款); ASYNC_REALTIME_PAY(异步准实时付款); SYNC_DIRECT_PAY(同步直接扣款); /// [JsonProperty("async_payment_mode")] public string AsyncPaymentMode { get; set; } /// /// 买家支付宝账号 /// [JsonProperty("buyer_logon_id")] public string BuyerLogonId { get; set; } /// /// 买家付款的金额 /// [JsonProperty("buyer_pay_amount")] public string BuyerPayAmount { get; set; } /// /// 买家在支付宝的用户id /// [JsonProperty("buyer_user_id")] public string BuyerUserId { get; set; } /// /// 支付宝卡余额 /// [JsonProperty("card_balance")] public string CardBalance { get; set; } /// /// 本次交易支付所使用的单品券优惠的商品优惠信息 /// [JsonProperty("discount_goods_detail")] public string DiscountGoodsDetail { get; set; } /// /// 交易支付使用的资金渠道 /// [JsonProperty("fund_bill_list")] public List FundBillList { get; set; } /// /// 交易支付时间 /// [JsonProperty("gmt_payment")] public string GmtPayment { get; set; } /// /// 交易中可给用户开具发票的金额 /// [JsonProperty("invoice_amount")] public string InvoiceAmount { get; set; } /// /// 买家支付宝用户号,该参数已废弃,请不要使用 /// [JsonProperty("open_id")] public string OpenId { get; set; } /// /// 商户订单号 /// [JsonProperty("out_trade_no")] public string OutTradeNo { get; set; } /// /// 使用积分宝付款的金额 /// [JsonProperty("point_amount")] public string PointAmount { get; set; } /// /// 实收金额 /// [JsonProperty("receipt_amount")] public string ReceiptAmount { get; set; } /// /// 发生支付交易的商户门店名称 /// [JsonProperty("store_name")] public string StoreName { get; set; } /// /// 交易金额 /// [JsonProperty("total_amount")] public string TotalAmount { get; set; } /// /// 支付宝交易号 /// [JsonProperty("trade_no")] public string TradeNo { get; set; } /// /// 本交易支付时使用的所有优惠券信息 /// [JsonProperty("voucher_detail_list")] public List VoucherDetailList { get; set; } } }