com.aliyun.dingtalkim_1_0.models.QueryUnReadMessageRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class QueryUnReadMessageRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1107****2120
*/
@NameInMap("appUserId")
public String appUserId;
/**
* example:
* 1745****8777
*/
@NameInMap("openConversationIds")
public java.util.List openConversationIds;
public static QueryUnReadMessageRequest build(java.util.Map map) throws Exception {
QueryUnReadMessageRequest self = new QueryUnReadMessageRequest();
return TeaModel.build(map, self);
}
public QueryUnReadMessageRequest setAppUserId(String appUserId) {
this.appUserId = appUserId;
return this;
}
public String getAppUserId() {
return this.appUserId;
}
public QueryUnReadMessageRequest setOpenConversationIds(java.util.List openConversationIds) {
this.openConversationIds = openConversationIds;
return this;
}
public java.util.List getOpenConversationIds() {
return this.openConversationIds;
}
}