using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayTradeRefundResponse.
///
public class AlipayTradeRefundResponse : AopResponse
{
///
/// 用户的登录id
///
[JsonProperty("buyer_logon_id")]
public string BuyerLogonId { get; set; }
///
/// 买家在支付宝的用户id
///
[JsonProperty("buyer_user_id")]
public string BuyerUserId { get; set; }
///
/// 本次退款是否发生了资金变化
///
[JsonProperty("fund_change")]
public string FundChange { get; set; }
///
/// 退款支付时间
///
[JsonProperty("gmt_refund_pay")]
public string GmtRefundPay { get; set; }
///
/// 买家支付宝用户号,该参数已废弃,请不要使用
///
[JsonProperty("open_id")]
public string OpenId { get; set; }
///
/// 商户订单号
///
[JsonProperty("out_trade_no")]
public string OutTradeNo { get; set; }
///
/// 退款使用的资金渠道
///
[JsonProperty("refund_detail_item_list")]
public List RefundDetailItemList { get; set; }
///
/// 退款总金额
///
[JsonProperty("refund_fee")]
public string RefundFee { get; set; }
///
/// 本次商户实际退回金额 注:在签约收单产品时需勾选“返回资金明细”才会返回
///
[JsonProperty("send_back_fee")]
public string SendBackFee { get; set; }
///
/// 交易在支付时候的门店名称
///
[JsonProperty("store_name")]
public string StoreName { get; set; }
///
/// 2013112011001004330000121536
///
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}