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