You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
793 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingCampaignCrowdBatchqueryResponse.
/// </summary>
public class KoubeiMarketingCampaignCrowdBatchqueryResponse : AopResponse
{
/// <summary>
/// 人群组的基本信息id表示人群分组的IDname表示人群分组的名称status表示人群分组的状态目前只有status=ENABLE有效状态才返回已经删除的为DISABLE的不返回
/// </summary>
[XmlElement("crowd_group_sets")]
public string CrowdGroupSets { get; set; }
/// <summary>
/// 返回接记录的总条数
/// </summary>
[XmlElement("total_number")]
public string TotalNumber { get; set; }
}
}