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
817 B
C#

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;
namespace Aop.Api.Response
{
/// <summary>
/// KoubeiMarketingCampaignCrowdCountResponse.
/// </summary>
public class KoubeiMarketingCampaignCrowdCountResponse : AopResponse
{
/// <summary>
/// 各个细分维度的值label为标签codevalue为该标签各个标签值对应的统计信息本示例表示pam_gender这个标签的男有100人女有1000人满足入参指定的圈人条件
/// </summary>
[XmlElement("dimension_values")]
public string DimensionValues { get; set; }
/// <summary>
/// 人群组的汇总统计值total是人数sum是交易金额
/// </summary>
[XmlElement("summary_values")]
public string SummaryValues { get; set; }
}
}