com.aliyun.dingtalkservice_group_1_0.models.QueryActiveUsersRequest 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 QueryActiveUsersRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cidxxxxxx==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* example:
* KxisoOk
*
* if can be null:
* true
*/
@NameInMap("openTeamId")
public String openTeamId;
/**
* example:
* 5
*/
@NameInMap("topN")
public Long topN;
public static QueryActiveUsersRequest build(java.util.Map map) throws Exception {
QueryActiveUsersRequest self = new QueryActiveUsersRequest();
return TeaModel.build(map, self);
}
public QueryActiveUsersRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public QueryActiveUsersRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public QueryActiveUsersRequest setTopN(Long topN) {
this.topN = topN;
return this;
}
public Long getTopN() {
return this.topN;
}
}