24 lines
632 B
C#
24 lines
632 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayTradeBatchRefundQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayTradeBatchRefundQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商户请求批量退款时传递的批次号。 trade_no和batch_no不能同时为空
|
|
/// </summary>
|
|
[JsonProperty("batch_no")]
|
|
public string BatchNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 退款明细的支付宝交易号。 trade_no和batch_no不能同时为空
|
|
/// </summary>
|
|
[JsonProperty("trade_no")]
|
|
public string TradeNo { get; set; }
|
|
}
|
|
} |