38 lines
917 B
C#
38 lines
917 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// BenefitGradePoint Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class BenefitGradePoint : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 蚂蚁会员权益配置的ID
|
|
/// </summary>
|
|
[JsonProperty("benefit_id")]
|
|
public string BenefitId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 蚂蚁会员权益配置在各个用户等级下的折扣积分
|
|
/// </summary>
|
|
[JsonProperty("grade_points")]
|
|
|
|
public List<GradeDiscountPoint> GradePoints { get; set; }
|
|
|
|
/// <summary>
|
|
/// 蚂蚁会员权益配置的原始积分
|
|
/// </summary>
|
|
[JsonProperty("original_point")]
|
|
public string OriginalPoint { get; set; }
|
|
|
|
/// <summary>
|
|
/// 蚂蚁会员权益的专享等级列表
|
|
/// </summary>
|
|
[JsonProperty("own_grades")]
|
|
public string OwnGrades { get; set; }
|
|
}
|
|
} |