NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMemberBenefitInfo.cs

43 lines
1.0 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>
/// AntMemberBenefitInfo Data Structure.
/// </summary>
[Serializable]
public class AntMemberBenefitInfo : AopObject
{
/// <summary>
/// 权益对应跳转地址
/// </summary>
[XmlElement("action_url")]
public string ActionUrl { get; set; }
/// <summary>
/// 权益图标地址
/// </summary>
[XmlElement("icon_url")]
public string IconUrl { get; set; }
/// <summary>
/// 权益状态RECEIVABLE可领取RECEIVED已领取OTHER其它
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 会员权益标题
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// 会员权益价值
/// </summary>
[XmlElement("value")]
public string Value { get; set; }
}
}