com.aliyun.dingtalkservice_group_1_0.models.QueryServiceGroupMessageReadStatusRequest 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 QueryServiceGroupMessageReadStatusRequest extends TeaModel {
/**
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* example:
* CXiw
*/
@NameInMap("nextToken")
public String nextToken;
/**
* This parameter is required.
*
* example:
* cidxxxxxx==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* msgxxxxxx==
*/
@NameInMap("openMsgTaskId")
public String openMsgTaskId;
/**
* This parameter is required.
*
* example:
* EifWwis
*/
@NameInMap("openTeamId")
public String openTeamId;
public static QueryServiceGroupMessageReadStatusRequest build(java.util.Map map) throws Exception {
QueryServiceGroupMessageReadStatusRequest self = new QueryServiceGroupMessageReadStatusRequest();
return TeaModel.build(map, self);
}
public QueryServiceGroupMessageReadStatusRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryServiceGroupMessageReadStatusRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QueryServiceGroupMessageReadStatusRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public QueryServiceGroupMessageReadStatusRequest setOpenMsgTaskId(String openMsgTaskId) {
this.openMsgTaskId = openMsgTaskId;
return this;
}
public String getOpenMsgTaskId() {
return this.openMsgTaskId;
}
public QueryServiceGroupMessageReadStatusRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
}