com.aliyun.devops20210625.models.StartPipelineRunResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devops20210625 Show documentation
Show all versions of devops20210625 Show documentation
Alibaba Cloud devops (20210625) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.devops20210625.models;
import com.aliyun.tea.*;
public class StartPipelineRunResponseBody extends TeaModel {
@NameInMap("errorCode")
public String errorCode;
@NameInMap("errorMessage")
public String errorMessage;
@NameInMap("pipelineRunId")
public Long pipelineRunId;
@NameInMap("requestId")
public String requestId;
@NameInMap("success")
public Boolean success;
public static StartPipelineRunResponseBody build(java.util.Map map) throws Exception {
StartPipelineRunResponseBody self = new StartPipelineRunResponseBody();
return TeaModel.build(map, self);
}
public StartPipelineRunResponseBody setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public StartPipelineRunResponseBody setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
public String getErrorMessage() {
return this.errorMessage;
}
public StartPipelineRunResponseBody setPipelineRunId(Long pipelineRunId) {
this.pipelineRunId = pipelineRunId;
return this;
}
public Long getPipelineRunId() {
return this.pipelineRunId;
}
public StartPipelineRunResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public StartPipelineRunResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}