Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayUserPointRefundModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayUserPointRefundModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserPointRefundModel : AopObject
{
/// <summary>
/// 业务大类,与调用扣减积分接口时传入的值一致。
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 业务流水号,用来映射需要回退积分的订单号,与调用扣减积分接口时传入的值一致。
/// </summary>
[JsonProperty("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 业务子类型,与调用扣减积分接口时传入的值一致。
/// </summary>
[JsonProperty("sub_biz_type")]
public string SubBizType { get; set; }
/// <summary>
/// 订单所属支付宝用户的uid与调用扣减积分接口时传入的值一致。
/// </summary>
[JsonProperty("user_id")]
public string UserId { get; set; }
}
}