com.antgroup.antchain.openapi.deps.models.AggregatedTaskExecutionProgress 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 AggregatedTaskExecutionProgress extends TeaModel {
// 错误节点信息
@NameInMap("error_task_execution_nodes")
@Validation(required = true)
public java.util.List errorTaskExecutionNodes;
// 任务执行进度
@NameInMap("task_execution_progress")
@Validation(required = true)
public TaskExecutionProgress taskExecutionProgress;
public static AggregatedTaskExecutionProgress build(java.util.Map map) throws Exception {
AggregatedTaskExecutionProgress self = new AggregatedTaskExecutionProgress();
return TeaModel.build(map, self);
}
public AggregatedTaskExecutionProgress setErrorTaskExecutionNodes(java.util.List errorTaskExecutionNodes) {
this.errorTaskExecutionNodes = errorTaskExecutionNodes;
return this;
}
public java.util.List getErrorTaskExecutionNodes() {
return this.errorTaskExecutionNodes;
}
public AggregatedTaskExecutionProgress setTaskExecutionProgress(TaskExecutionProgress taskExecutionProgress) {
this.taskExecutionProgress = taskExecutionProgress;
return this;
}
public TaskExecutionProgress getTaskExecutionProgress() {
return this.taskExecutionProgress;
}
}