using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// RefundDetail Data Structure.
///
[Serializable]
public class RefundDetail : AopObject
{
///
/// 交易退款金额
///
[JsonProperty("refund_amount")]
public string RefundAmount { get; set; }
///
/// 退款备注
///
[JsonProperty("refund_memo")]
public string RefundMemo { get; set; }
///
/// 退分润列表
///
[JsonProperty("refund_royaltys")]
public List RefundRoyaltys { get; set; }
///
/// 退补差金额
///
[JsonProperty("refund_suppl_amount")]
public string RefundSupplAmount { get; set; }
///
/// 退补差备注
///
[JsonProperty("refund_suppl_memo")]
public string RefundSupplMemo { get; set; }
///
/// 支付宝交易号
///
[JsonProperty("trade_no")]
public string TradeNo { get; set; }
}
}