com.antgroup.antchain.openapi.deps.models.QueryMachinegroupSlbmountprogressResponse 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 QueryMachinegroupSlbmountprogressResponse extends TeaModel {
@NameInMap("req_msg_id")
public String reqMsgId;
@NameInMap("result_code")
public String resultCode;
@NameInMap("result_msg")
public String resultMsg;
// 执行进度
@NameInMap("executor_progress")
public String executorProgress;
public static QueryMachinegroupSlbmountprogressResponse build(java.util.Map map) throws Exception {
QueryMachinegroupSlbmountprogressResponse self = new QueryMachinegroupSlbmountprogressResponse();
return TeaModel.build(map, self);
}
public QueryMachinegroupSlbmountprogressResponse setReqMsgId(String reqMsgId) {
this.reqMsgId = reqMsgId;
return this;
}
public String getReqMsgId() {
return this.reqMsgId;
}
public QueryMachinegroupSlbmountprogressResponse setResultCode(String resultCode) {
this.resultCode = resultCode;
return this;
}
public String getResultCode() {
return this.resultCode;
}
public QueryMachinegroupSlbmountprogressResponse setResultMsg(String resultMsg) {
this.resultMsg = resultMsg;
return this;
}
public String getResultMsg() {
return this.resultMsg;
}
public QueryMachinegroupSlbmountprogressResponse setExecutorProgress(String executorProgress) {
this.executorProgress = executorProgress;
return this;
}
public String getExecutorProgress() {
return this.executorProgress;
}
}