using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceCloudbusTotalodQueryModel Data Structure. /// [Serializable] public class AlipayDataAiserviceCloudbusTotalodQueryModel : AopObject { /// /// 接口版本 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 结束时间精确到月。例如201901 /// [XmlElement("end_date")] public string EndDate { get; set; } /// /// 起始区域 geohash list 。 区域必须连续,否则对结果有影响 /// [XmlArray("origin_geo_hashs")] [XmlArrayItem("string")] public List OriginGeoHashs { get; set; } /// /// 商户ID /// [XmlElement("partner_id")] public string PartnerId { get; set; } /// /// 开始时间 精确到月 例如:201904 /// [XmlElement("start_date")] public string StartDate { get; set; } /// /// 结果类型:枚举类型 0:包含O区域内部数据 1:不包含O内部数据 . 默认0 /// [XmlElement("type")] public string Type { get; set; } } }