com.aliyun.dingtalkrobot_1_0.models.PrivateChatQueryResponseBody 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class PrivateChatQueryResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* example:
* Kna29Ra5pdJznx1ghavbumkQKwDzgfxZLapw55G7x0Q=
*/
@NameInMap("nextToken")
public String nextToken;
@NameInMap("readUserIds")
public java.util.List readUserIds;
/**
* example:
* SUCCESS
*/
@NameInMap("sendStatus")
public String sendStatus;
public static PrivateChatQueryResponseBody build(java.util.Map map) throws Exception {
PrivateChatQueryResponseBody self = new PrivateChatQueryResponseBody();
return TeaModel.build(map, self);
}
public PrivateChatQueryResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public PrivateChatQueryResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public PrivateChatQueryResponseBody setReadUserIds(java.util.List readUserIds) {
this.readUserIds = readUserIds;
return this;
}
public java.util.List getReadUserIds() {
return this.readUserIds;
}
public PrivateChatQueryResponseBody setSendStatus(String sendStatus) {
this.sendStatus = sendStatus;
return this;
}
public String getSendStatus() {
return this.sendStatus;
}
}