using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// QueryComplexLabelRule Data Structure.
///
[Serializable]
public class QueryComplexLabelRule : AopObject
{
///
/// 标签id
///
[JsonProperty("label_id")]
public string LabelId { get; set; }
///
/// 标签名
///
[JsonProperty("label_name")]
public string LabelName { get; set; }
///
/// 当有多个取值时用英文","分隔,不允许传入下划线"_"、竖线"|"或者空格" "
///
[JsonProperty("label_value")]
public string LabelValue { get; set; }
///
/// 运算符
///
[JsonProperty("operator")]
public string Operator { get; set; }
}
}