using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceCloudbusTimeodGetModel Data Structure. /// [Serializable] public class AlipayDataAiserviceCloudbusTimeodGetModel : AopObject { /// /// 接口版本 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 工作日和非工作日 枚举{WORKDAY,WEEKEND,ALL} /// [XmlElement("date_type")] public string DateType { get; set; } /// /// 目的地 geohash /// [XmlElement("dest_geo")] public string DestGeo { 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; } } }