![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkservice_group_1_0.models.BatchQuerySendMessageTaskRequest 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class BatchQuerySendMessageTaskRequest extends TeaModel {
/**
* example:
* false
*/
@NameInMap("getReadCount")
public Boolean getReadCount;
/**
* example:
* 2022-04-02 00:00:00
*/
@NameInMap("gmtCreateEnd")
public String gmtCreateEnd;
/**
* example:
* 2022-04-01 00:00:00
*/
@NameInMap("gmtCreateStart")
public String gmtCreateStart;
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Long maxResults;
/**
* example:
* 首页传递空
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* fwPuycdHiiI
*/
@NameInMap("openGroupSetId")
public String openGroupSetId;
/**
* This parameter is required.
*
* example:
* Jciwnfw
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* example:
* 群发任务双11
*/
@NameInMap("taskName")
public String taskName;
public static BatchQuerySendMessageTaskRequest build(java.util.Map map) throws Exception {
BatchQuerySendMessageTaskRequest self = new BatchQuerySendMessageTaskRequest();
return TeaModel.build(map, self);
}
public BatchQuerySendMessageTaskRequest setGetReadCount(Boolean getReadCount) {
this.getReadCount = getReadCount;
return this;
}
public Boolean getGetReadCount() {
return this.getReadCount;
}
public BatchQuerySendMessageTaskRequest setGmtCreateEnd(String gmtCreateEnd) {
this.gmtCreateEnd = gmtCreateEnd;
return this;
}
public String getGmtCreateEnd() {
return this.gmtCreateEnd;
}
public BatchQuerySendMessageTaskRequest setGmtCreateStart(String gmtCreateStart) {
this.gmtCreateStart = gmtCreateStart;
return this;
}
public String getGmtCreateStart() {
return this.gmtCreateStart;
}
public BatchQuerySendMessageTaskRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public BatchQuerySendMessageTaskRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public BatchQuerySendMessageTaskRequest setOpenGroupSetId(String openGroupSetId) {
this.openGroupSetId = openGroupSetId;
return this;
}
public String getOpenGroupSetId() {
return this.openGroupSetId;
}
public BatchQuerySendMessageTaskRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public BatchQuerySendMessageTaskRequest setTaskName(String taskName) {
this.taskName = taskName;
return this;
}
public String getTaskName() {
return this.taskName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy