NewGaoKaoApi/PaymentSDK/AliPay/Domain/CrowdConstraintInfo.cs

31 lines
1.3 KiB
C#
Raw 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>
/// CrowdConstraintInfo Data Structure.
/// </summary>
[Serializable]
public class CrowdConstraintInfo : 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("crowd_condition")]
public string CrowdCondition { get; set; }
/// <summary>
/// 圈人名称
/// </summary>
[XmlElement("crowd_name")]
public string CrowdName { get; set; }
/// <summary>
/// 圈人约束取值NEWCOMER新客人群OFFLINE离线人群OFFLINE离线人群需要传递crowd_condition圈人条件使用方案参考crowd_condition使用说明
/// </summary>
[XmlElement("crowd_restriction")]
public string CrowdRestriction { get; set; }
}
}