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