NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayBusinessOrderRefundQu...

25 lines
742 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayBusinessOrderRefundQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayBusinessOrderRefundQueryModel : AopObject
{
/// <summary>
/// 支付宝订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 退款请求号和退款时的退款请求号refund_request_no保持一致。若该参数为空则认为时整单退款查询返回订单中所有的退款信息
/// </summary>
[XmlElement("refund_request_no")]
public string RefundRequestNo { get; set; }
}
}