using System; using System.Collections.Generic; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// LifeLabel Data Structure. /// [Serializable] public class LifeLabel : AopObject { /// /// 该标签支持的业务列表,menu表示个性化菜单,extension表示个性化扩展区,message表示消息触达 /// [JsonProperty("biz")] public string Biz { get; set; } /// /// 标签类目 /// [JsonProperty("category")] public string Category { get; set; } /// /// 标签值数据类型 /// [JsonProperty("data_type")] public string DataType { get; set; } /// /// 标签英文代码 /// [JsonProperty("label_code")] public string LabelCode { get; set; } /// /// 标签id,唯一标识一个标签 /// [JsonProperty("label_id")] public string LabelId { get; set; } /// /// 标签名 /// [JsonProperty("label_name")] public string LabelName { get; set; } /// /// 该标签支持的运算符 /// [JsonProperty("operator")] public string Operator { get; set; } /// /// 每个取值的业务含义 /// [JsonProperty("options")] public List