using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayDataDataserviceAntlbsCrowdMatchModel Data Structure. /// [Serializable] public class AlipayDataDataserviceAntlbsCrowdMatchModel : AopObject { /// /// crowd_code + 客群匹配接口 + 客群码,创建客群时可获取 /// [XmlArray("crowd_code")] [XmlArrayItem("string")] public List CrowdCode { get; set; } /// /// scene_code + 客群匹配接口 + 客群归属的场景,在icrowd平台上可以看到 /// [XmlElement("scene_code")] public string SceneCode { get; set; } /// /// uid + 客群匹配接口 + 用户唯一ID,目前只支持支付宝账号,其他ID类型请联系接口负责人确认是否支持 /// [XmlElement("uid")] public string Uid { get; set; } /// /// uid_type + 客群匹配接口 + ID类型,目前只支持支付宝账号(USER_ID),其他ID类型请联系接口负责人确认是否支持 /// [XmlElement("uid_type")] public string UidType { get; set; } } }