NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipaySocialGiftOrderRefund...

37 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipaySocialGiftOrderRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipaySocialGiftOrderRefundModel : AopObject
{
/// <summary>
/// 商户再送礼平台的唯一ID用于标识具体的调用业务方需要先在送礼平台进行业务类型的分配之后才看使用。
/// </summary>
[XmlElement("mid")]
public string Mid { get; set; }
/// <summary>
/// 对应送礼平台的主订单ID可根据此进行订单查询
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 部分退款金额,该金额当退款类型为部分退款的时候,是必填的。部分退款以为这退部分金额。注意目前该接口只支持单次退款,即只允许单笔订单退一次。
/// </summary>
[XmlElement("refund_price")]
public string RefundPrice { get; set; }
/// <summary>
/// 退款类型: REFUND_ALL全额退款 取订单金额进行全额退款 REFUND_PARTLY部分退款 默认为REFUND_ALL
/// </summary>
[XmlElement("refund_type")]
public string RefundType { get; set; }
}
}