All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.devops20210625.models.DeletePipelineGroupResponseBody Maven / Gradle / Ivy

There is a newer version: 4.15.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.devops20210625.models;

import com.aliyun.tea.*;

public class DeletePipelineGroupResponseBody extends TeaModel {
    @NameInMap("errorCode")
    public String errorCode;

    @NameInMap("errorMessage")
    public String errorMessage;

    @NameInMap("requestId")
    public String requestId;

    @NameInMap("success")
    public Boolean success;

    public static DeletePipelineGroupResponseBody build(java.util.Map map) throws Exception {
        DeletePipelineGroupResponseBody self = new DeletePipelineGroupResponseBody();
        return TeaModel.build(map, self);
    }

    public DeletePipelineGroupResponseBody setErrorCode(String errorCode) {
        this.errorCode = errorCode;
        return this;
    }
    public String getErrorCode() {
        return this.errorCode;
    }

    public DeletePipelineGroupResponseBody setErrorMessage(String errorMessage) {
        this.errorMessage = errorMessage;
        return this;
    }
    public String getErrorMessage() {
        return this.errorMessage;
    }

    public DeletePipelineGroupResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public DeletePipelineGroupResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy