36 lines
754 B
C#
36 lines
754 B
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayEcoMycarTradeRefundModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayEcoMycarTradeRefundModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 渠道平台
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("isv")]
|
||
|
|
public string Isv { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 退款金额(分)
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("refund_fee")]
|
||
|
|
public string RefundFee { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 退款原因
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("refund_reason")]
|
||
|
|
public string RefundReason { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 退款交易编号
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("trade_no")]
|
||
|
|
public string TradeNo { get; set; }
|
||
|
|
}
|
||
|
|
}
|