NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenPublicOdpsCrowdSy...

57 lines
1.6 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenPublicOdpsCrowdSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicOdpsCrowdSyncModel : AopObject
{
/// <summary>
/// 人群来源渠道
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 人群名称,不能包含特殊字符
/// </summary>
[XmlElement("crowd_name")]
public string CrowdName { get; set; }
/// <summary>
/// 即离线数据分区多级分区时为list格式
/// </summary>
[XmlArray("data_partition")]
[XmlArrayItem("string")]
public List<string> DataPartition { get; set; }
/// <summary>
/// 字段名称账户类型非ALIPAY_USER 时必填
/// </summary>
[XmlElement("field_name")]
public string FieldName { get; set; }
/// <summary>
/// 集团人群id
/// </summary>
[XmlElement("group_id")]
public string GroupId { get; set; }
/// <summary>
/// 数据odps表单名称,格式project.tablename
/// </summary>
[XmlElement("table_name")]
public string TableName { get; set; }
/// <summary>
/// 用户类型,支付宝账户:ALIPAY_USER,淘宝账户:TAOBAO_USER
/// </summary>
[XmlElement("user_type")]
public string UserType { get; set; }
}
}