![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkyida_1_0.models.ExecuteBatchTaskResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("failNumber")
public Integer failNumber;
/**
* This parameter is required.
*
* example:
* 2
*/
@NameInMap("successNumber")
public Integer successNumber;
/**
* This parameter is required.
*
* example:
* 3
*/
@NameInMap("total")
public Integer total;
public static ExecuteBatchTaskResponseBody build(java.util.Map map) throws Exception {
ExecuteBatchTaskResponseBody self = new ExecuteBatchTaskResponseBody();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskResponseBody setFailNumber(Integer failNumber) {
this.failNumber = failNumber;
return this;
}
public Integer getFailNumber() {
return this.failNumber;
}
public ExecuteBatchTaskResponseBody setSuccessNumber(Integer successNumber) {
this.successNumber = successNumber;
return this;
}
public Integer getSuccessNumber() {
return this.successNumber;
}
public ExecuteBatchTaskResponseBody setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy