com.antgroup.antchain.openapi.deps.models.GetApplicationTechstackResponse 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 GetApplicationTechstackResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 技术栈框架
@NameInMap("techstack")
@Validation(required = true)
public Techstack techstack;
public static GetApplicationTechstackResponse build(java.util.Map map) throws Exception {
GetApplicationTechstackResponse self = new GetApplicationTechstackResponse();
return TeaModel.build(map, self);
}
public GetApplicationTechstackResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public GetApplicationTechstackResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public GetApplicationTechstackResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public GetApplicationTechstackResponse setTechstack(Techstack techstack) {
this.techstack = techstack;
return this;
}
public Techstack getTechstack() {
return this.techstack;
}
}