using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayDataAiserviceCloudbusScheduletriptimeGetModel Data Structure. /// [Serializable] public class AlipayDataAiserviceCloudbusScheduletriptimeGetModel : AopObject { /// /// mean/max/pert_95 /// [XmlElement("aggregate_type")] public string AggregateType { get; set; } /// /// 接口版本 /// [XmlElement("app_version")] public string AppVersion { get; set; } /// /// 市 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 配制id /// [XmlElement("config_id")] public string ConfigId { get; set; } /// /// 公交公司id /// [XmlElement("corp_id")] public string CorpId { get; set; } /// /// 5/10/15/20/30/60 Long 时间粒度(单位分钟) /// [XmlElement("time_span")] public long TimeSpan { get; set; } } }