NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignCrow...

43 lines
1.7 KiB
C#
Raw Permalink Blame History

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.Domain
{
/// <summary>
/// KoubeiMarketingCampaignCrowdCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignCrowdCreateModel : AopObject
{
/// <summary>
/// 圈人的条件 op:表示操作符目前支持EQ相等,GT大于,GTEQ大于等于,LT小于,LTEQ小于等于,NEQ不等,LIKE模糊匹配,IN在枚举范围内,NOTIN不在枚举范围内,BETWEEN范围比较,LEFTDAYS几天以内,RIGHTDAYS几天以外,LOCATE地理位置比较,LBS地图位置数据 tagCode:标签code详细标签code参见附件。<a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/tags%26usecase.zip">标签信息</a> value:标签值
/// </summary>
[XmlElement("conditions")]
public string Conditions { get; set; }
/// <summary>
/// 人群组的名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 操作人id必须和operator_type配对出现不填时默认是商户
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作人类型,有以下值可填MER外部商户MER_OPERATOR外部商户操作员PROVIDER外部服务商PROVIDER_STAFF外部服务商员工默认不需要填这个字段默认为MER
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
/// <summary>
/// 外部流水号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
}
}