NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEcoMycarParkingOrderR...

36 lines
978 B
C#
Raw 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.Response
{
/// <summary>
/// AlipayEcoMycarParkingOrderRefundResponse.
/// </summary>
public class AlipayEcoMycarParkingOrderRefundResponse : AopResponse
{
/// <summary>
/// 代扣时返回的支付宝支付交易流水号,系统唯一
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 外部申请退款请求流水ISV唯一
/// </summary>
[XmlElement("out_refund_no")]
public string OutRefundNo { get; set; }
/// <summary>
/// 本次退款金额,保留小数点后两位
/// </summary>
[XmlElement("refund_fee")]
public string RefundFee { get; set; }
/// <summary>
/// 支付宝退款流水
/// </summary>
[XmlElement("refund_no")]
public string RefundNo { get; set; }
}
}