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