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