All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkservice_group_1_0.models.QueryActiveUsersRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy