com.antgroup.antchain.openapi.deps.models.QueryBuildpackFindbyappsResponse 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 QueryBuildpackFindbyappsResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 包含BuildpackV2Adapter对象的json字符串
@NameInMap("buildpackv2adapter")
public String buildpackv2adapter;
public static QueryBuildpackFindbyappsResponse build(java.util.Map map) throws Exception {
QueryBuildpackFindbyappsResponse self = new QueryBuildpackFindbyappsResponse();
return TeaModel.build(map, self);
}
public QueryBuildpackFindbyappsResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryBuildpackFindbyappsResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryBuildpackFindbyappsResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryBuildpackFindbyappsResponse setBuildpackv2adapter(String buildpackv2adapter) {
this.buildpackv2adapter = buildpackv2adapter;
return this;
}
public String getBuildpackv2adapter() {
return this.buildpackv2adapter;
}
}