NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserPointRefundModel.cs

37 lines
1.1 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>
/// AlipayUserPointRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserPointRefundModel : AopObject
{
/// <summary>
/// 业务大类,与调用扣减积分接口时传入的值一致。
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 业务流水号,用来映射需要回退积分的订单号,与调用扣减积分接口时传入的值一致。
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 业务子类型,与调用扣减积分接口时传入的值一致。
/// </summary>
[XmlElement("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 订单所属支付宝用户的uid与调用扣减积分接口时传入的值一致。
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}