using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayTradePagePayResponse.
///
public class AlipayTradePagePayResponse : AopResponse
{
///
/// 商户订单号
///
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
///
/// 收款支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字
///
[JsonProperty("seller_id")]
public string SellerId { get; set; }
///
/// 交易金额
///
[JsonProperty("total_amount")]
public string TotalAmount { get; set; }
///
/// 支付宝交易号
///
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}