com.aliyun.dingtalkrobot_1_0.models.OrgGroupQueryRequest 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 OrgGroupQueryRequest extends TeaModel {
/**
* example:
* 50
*/
@NameInMap("maxResults")
public Long maxResults;
/**
* example:
* 50
*/
@NameInMap("nextToken")
public String nextToken;
/**
* example:
* cid6KeBBLoveMJOGXoYKF5x7EeiodoA==
*/
@NameInMap("openConversationId")
public String openConversationId;
/**
* This parameter is required.
*
* example:
* Kna29Ra5pdJznx1ghavbumkQKwDzgfxZLapw55G7x0Q=
*/
@NameInMap("processQueryKey")
public String processQueryKey;
/**
* example:
* dingue4kfzdxbyn0pjqd
*/
@NameInMap("robotCode")
public String robotCode;
/**
* example:
* 02feb1cd4ncmed92998723813a6bfa89eea1df91a750721979992870dd90bdfa
*/
@NameInMap("token")
public String token;
public static OrgGroupQueryRequest build(java.util.Map map) throws Exception {
OrgGroupQueryRequest self = new OrgGroupQueryRequest();
return TeaModel.build(map, self);
}
public OrgGroupQueryRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public OrgGroupQueryRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public OrgGroupQueryRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public OrgGroupQueryRequest setProcessQueryKey(String processQueryKey) {
this.processQueryKey = processQueryKey;
return this;
}
public String getProcessQueryKey() {
return this.processQueryKey;
}
public OrgGroupQueryRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
public OrgGroupQueryRequest setToken(String token) {
this.token = token;
return this;
}
public String getToken() {
return this.token;
}
}