com.aliyun.dingtalkimpaas_1_0.models.BatchSendResponseBody 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class BatchSendResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* 23233434
*/
@NameInMap("taskId")
public String taskId;
public static BatchSendResponseBody build(java.util.Map map) throws Exception {
BatchSendResponseBody self = new BatchSendResponseBody();
return TeaModel.build(map, self);
}
public BatchSendResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
}