NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceAntlbs...

39 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;
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; }
}
}