com.antgroup.antchain.openapi.deps.models.CreateAppVersionResponse 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 CreateAppVersionResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 发布包任务id,可用于查询应用发布包生成状态
@NameInMap("build_id")
@Validation(required = true)
public String buildId;
public static CreateAppVersionResponse build(java.util.Map map) throws Exception {
CreateAppVersionResponse self = new CreateAppVersionResponse();
return TeaModel.build(map, self);
}
public CreateAppVersionResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public CreateAppVersionResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public CreateAppVersionResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public CreateAppVersionResponse setBuildId(String buildId) {
this.buildId = buildId;
return this;
}
public String getBuildId() {
return this.buildId;
}
}