You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.0 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingCampaignCrowdDetailQueryResponse.
/// </summary>
public class KoubeiMarketingCampaignCrowdDetailQueryResponse : AopResponse
{
/// <summary>
/// op:表示操作符目前支持的有EQ相等,GT大于,GTEQ大于等于,LT小于,LTEQ小于等于,NEQ不等,LIKE模糊匹配,IN在枚举范围内,NOTIN不在枚举范围内,BETWEEN范围比较,LEFTDAYS几天以内,RIGHTDAYS几天以外,LOCATE地理位置比较,LBS地图位置数据 tagCode:就是标签code详细标签信息参见附件<a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/tags%26usecase.zip">标签信息</a> value标签对应的值
/// </summary>
[XmlElement("crowd_group_info")]
public string CrowdGroupInfo { get; set; }
/// <summary>
/// 人群名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}