using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayDataDataserviceConsumRatioQueryModel Data Structure.
///
[Serializable]
public class AlipayDataDataserviceConsumRatioQueryModel : AopObject
{
///
/// 区域编码,多个编码的时候用英文逗号分割,最多不超过20个
///
[XmlElement("area_code")]
public string AreaCode { get; set; }
///
/// 区域类型,枚举值:city(城市)、county(区县)、town(街道)、trading(商圈)
///
[XmlElement("area_type")]
public string AreaType { get; set; }
///
/// 数据类型,枚举值:dist(来源地占比)、gender(性别占比)、capacity(消费能力占比)、age(年龄占比)
///
[XmlElement("data_type")]
public string DataType { get; set; }
///
/// 查询占比的结束日期,格式为:4位年+2位月,最晚为当前月的上一月
///
[XmlElement("end_date")]
public string EndDate { get; set; }
///
/// 查询指数的开始日期,格式为:4位年+2位月,最早为近6个月的开始月
///
[XmlElement("start_date")]
public string StartDate { get; set; }
}
}