com.antgroup.antchain.openapi.deps.models.QueryAppservicebuildpackrelationResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class QueryAppservicebuildpackrelationResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// app_service_buildpack_relations
@NameInMap("app_service_buildpack_relations")
public java.util.List appServiceBuildpackRelations;
// current_page
@NameInMap("current_page")
public Long currentPage;
// page_size
@NameInMap("page_size")
public Long pageSize;
// total_count
@NameInMap("total_count")
public Long totalCount;
public static QueryAppservicebuildpackrelationResponse build(java.util.Map map) throws Exception {
QueryAppservicebuildpackrelationResponse self = new QueryAppservicebuildpackrelationResponse();
return TeaModel.build(map, self);
}
public QueryAppservicebuildpackrelationResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryAppservicebuildpackrelationResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryAppservicebuildpackrelationResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryAppservicebuildpackrelationResponse setAppServiceBuildpackRelations(java.util.List appServiceBuildpackRelations) {
this.appServiceBuildpackRelations = appServiceBuildpackRelations;
return this;
}
public java.util.List getAppServiceBuildpackRelations() {
return this.appServiceBuildpackRelations;
}
public QueryAppservicebuildpackrelationResponse setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
return this;
}
public Long getCurrentPage() {
return this.currentPage;
}
public QueryAppservicebuildpackrelationResponse setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public QueryAppservicebuildpackrelationResponse setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
}