NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayBusinessOrderRefundMo...

45 lines
1.3 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayBusinessOrderRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayBusinessOrderRefundModel : AopObject
{
/// <summary>
/// 订单退款环境信息
/// </summary>
[XmlElement("env_info")]
public EnvInfo EnvInfo { get; set; }
/// <summary>
/// 支付宝订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 退款支付工具列表
/// </summary>
[XmlArray("refund_paytool_list")]
[XmlArrayItem("paytool_refund_request_detail")]
public List<PaytoolRefundRequestDetail> RefundPaytoolList { get; set; }
/// <summary>
/// 退款原因
/// </summary>
[XmlElement("refund_reason")]
public string RefundReason { get; set; }
/// <summary>
/// 退款请求号。若退款请求号不为空则必需传入refund_paytools_list。 若不传入退款请求号同时refund_paytools_list为空则认为是全额退款。
/// </summary>
[XmlElement("refund_request_no")]
public string RefundRequestNo { get; set; }
}
}