com.aliyun.dingtalkservice_group_1_0.models.QuerySendMsgTaskStatisticsRequest 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 QuerySendMsgTaskStatisticsRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Long maxResults;
/**
* example:
* 1
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* Jci333
*/
@NameInMap("openBatchTaskId")
public String openBatchTaskId;
/**
* This parameter is required.
*
* example:
* Jciwnfw
*/
@NameInMap("openTeamId")
public String openTeamId;
public static QuerySendMsgTaskStatisticsRequest build(java.util.Map map) throws Exception {
QuerySendMsgTaskStatisticsRequest self = new QuerySendMsgTaskStatisticsRequest();
return TeaModel.build(map, self);
}
public QuerySendMsgTaskStatisticsRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public QuerySendMsgTaskStatisticsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QuerySendMsgTaskStatisticsRequest setOpenBatchTaskId(String openBatchTaskId) {
this.openBatchTaskId = openBatchTaskId;
return this;
}
public String getOpenBatchTaskId() {
return this.openBatchTaskId;
}
public QuerySendMsgTaskStatisticsRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
}