Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/BenefitInfoDetail.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
1013 B
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>
/// BenefitInfoDetail Data Structure.
/// </summary>
[Serializable]
public class BenefitInfoDetail : AopObject
{
/// <summary>
/// PRE_FUND实际核销或者商户赠送的金额 DISCOUNT实际折扣掉的金额获取权益不支持该类型 COUPON实际核销或者商户赠送的券
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 权益类型 PRE_FUND卡面额 DISCOUNT折扣金额 COUPON
/// </summary>
[JsonProperty("benefit_type")]
public string BenefitType { get; set; }
/// <summary>
/// COUPON当核销或者赠送券时可以设置该值
/// </summary>
[JsonProperty("count")]
public string Count { get; set; }
/// <summary>
/// 产生核销或者赠送权益的描述
/// </summary>
[JsonProperty("description")]
public string Description { get; set; }
}
}