using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// UserInfoAndBenefitQueryResult Data Structure.
///
[Serializable]
public class UserInfoAndBenefitQueryResult : AopObject
{
///
/// 用户的蚂蚁会员积分余额
///
[JsonProperty("balance")]
public long Balance { get; set; }
///
/// 蚂蚁会员权益配置信息列表
///
[JsonProperty("benefit_info_list")]
public List BenefitInfoList { get; set; }
///
/// 用户的蚂蚁会员等级
///
[JsonProperty("grade")]
public string Grade { get; set; }
}
}