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

com.antgroup.antchain.openapi.deps.models.ErrorTaskExecutionNode Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;

import com.aliyun.tea.*;

public class ErrorTaskExecutionNode extends TeaModel {
    // 节点 ID
    @NameInMap("node_id")
    @Validation(required = true)
    public String nodeId;

    // 节点名
    @NameInMap("node_name")
    @Validation(required = true)
    public String nodeName;

    // 错误码
    @NameInMap("code")
    @Validation(required = true)
    public String code;

    // 错误信息
    @NameInMap("message")
    @Validation(required = true)
    public String message;

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

    public ErrorTaskExecutionNode setNodeId(String nodeId) {
        this.nodeId = nodeId;
        return this;
    }
    public String getNodeId() {
        return this.nodeId;
    }

    public ErrorTaskExecutionNode setNodeName(String nodeName) {
        this.nodeName = nodeName;
        return this;
    }
    public String getNodeName() {
        return this.nodeName;
    }

    public ErrorTaskExecutionNode setCode(String code) {
        this.code = code;
        return this;
    }
    public String getCode() {
        return this.code;
    }

    public ErrorTaskExecutionNode setMessage(String message) {
        this.message = message;
        return this;
    }
    public String getMessage() {
        return this.message;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy