com.antgroup.antchain.openapi.deps.models.CreateConfigAppResponse 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 CreateConfigAppResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 应用参数 id
@NameInMap("app_param_id")
public String appParamId;
public static CreateConfigAppResponse build(java.util.Map map) throws Exception {
CreateConfigAppResponse self = new CreateConfigAppResponse();
return TeaModel.build(map, self);
}
public CreateConfigAppResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public CreateConfigAppResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public CreateConfigAppResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public CreateConfigAppResponse setAppParamId(String appParamId) {
this.appParamId = appParamId;
return this;
}
public String getAppParamId() {
return this.appParamId;
}
}