using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// QueryResult Data Structure. /// [Serializable] public class QueryResult : AopObject { /// /// 支付宝车型库品牌背景图片链接地址, query_type参数的值为brands时此参数必填;query_type参数的值为series,models,company时不返回 /// [XmlElement("background_url")] public string BackgroundUrl { get; set; } /// /// 支付宝车型库品牌编号query_type参数的值为brands,models时此参数必填;query_type参数的值为series,company时不返回,系统唯一 /// [XmlElement("brand_id")] public string BrandId { get; set; } /// /// 支付宝车型库品牌名称query_type参数的值为brands, models时此参数必填;query_type参数的值为series,company时不返回 /// [XmlElement("brand_name")] public string BrandName { get; set; } /// /// 支付宝车型库排量,query_type参数的值为models时此参数必填, query_type参数的值为series,company, brands时此参数不返回 /// [XmlElement("cc")] public string Cc { get; set; } /// /// 支付宝车型库厂商编号,query_type参数的值为series, models,company时此参数必填;query_type参数的值为brands时不返回,系统唯一 /// [XmlElement("company_id")] public string CompanyId { get; set; } /// /// 支付宝车型库厂商名称,query_type参数的值为series, models,company时此参数必填,query_type参数的值为brands时此参数不返回 /// [XmlElement("company_name")] public string CompanyName { get; set; } /// /// 支付宝车型库发动机号,query_type参数的值为models时此参数必填, query_type参数的值为series,company, brands时此参数不返回 /// [XmlElement("engine")] public string Engine { get; set; } /// /// 支付宝车型库品牌logo图片链接地址, query_type参数的值为brands时此参数必填;query_type参数的值为series,models,company时不返回 /// [XmlElement("logo_url")] public string LogoUrl { get; set; } /// /// 支付宝车型库车型编号,query_type参数的值为models时此参数必填,query_type参数的值为series,company, brands时此参数不返回,系统唯一 /// [XmlElement("model_id")] public string ModelId { get; set; } /// /// 支付宝车型库车型名称,query_type参数的值为models时此参数必填, query_type参数的值为series,company, brands时此参数不返回 /// [XmlElement("model_name")] public string ModelName { get; set; } /// /// 支付宝车型库生产年限,query_type参数的值为models时此参数必填, query_type参数的值为series,company, brands时此参数不返回 /// [XmlElement("prod_year")] public string ProdYear { get; set; } /// /// 支付宝车型库车系组别,query_type参数的值为series时此参数必填,query_type参数的值为brands, models时此参数不返回 /// [XmlElement("serie_group")] public string SerieGroup { get; set; } /// /// 支付宝车型库车系编号query_type参数的值为series,models,company时此参数必填;query_type参数的值为brands时不返回,系统唯一 /// [XmlElement("serie_id")] public string SerieId { get; set; } /// /// 支付宝车型库车系名称,query_type参数的值为series,models时此参数必填;query_type参数的值为brands时不返回 /// [XmlElement("serie_name")] public string SerieName { get; set; } /// /// 支付宝车型库车系图片连接地址, query_type参数的值为series时此参数必填;query_type参数的值为brands,models时不返回 /// [XmlElement("serie_photo")] public string SeriePhoto { get; set; } /// /// 支付宝车型库年款,query_type参数的值为models时此参数必填, query_type参数的值为series,company, brands时此参数不返回 /// [XmlElement("style")] public string Style { get; set; } } }