com.alipay.api.response.AlipayEcoMycarCarmodelBatchqueryResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.QueryResult;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.eco.mycar.carmodel.batchquery response.
*
* @author auto create
* @since 1.0, 2024-07-04 17:31:53
*/
public class AlipayEcoMycarCarmodelBatchqueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7866847973476592699L;
/**
* 以下是对查询结果query_result:查询品牌信息返回的json格式的品牌信息列表中字段属性的详细描述说明;查询车系信息返回的json格式的车系信息列表中字段属性的详细描述说明;查询车型信息返回的json格式的车型信息列表中字段属性的详细描述说明。
*/
@ApiField("query_result")
private QueryResult queryResult;
/**
* 查询类型,接口通过此参数判断本次请求是查询品牌信息还是车型信息等,brands(查询品牌),series(查询车系),company(厂商),models(查询车型)
*/
@ApiField("query_type")
private String queryType;
public void setQueryResult(QueryResult queryResult) {
this.queryResult = queryResult;
}
public QueryResult getQueryResult( ) {
return this.queryResult;
}
public void setQueryType(String queryType) {
this.queryType = queryType;
}
public String getQueryType( ) {
return this.queryType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy