com.aliyun.dingtalkrobot_1_0.models.PrivateChatQueryRequest 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 PrivateChatQueryRequest 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;
public static PrivateChatQueryRequest build(java.util.Map map) throws Exception {
PrivateChatQueryRequest self = new PrivateChatQueryRequest();
return TeaModel.build(map, self);
}
public PrivateChatQueryRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public PrivateChatQueryRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public PrivateChatQueryRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public PrivateChatQueryRequest setProcessQueryKey(String processQueryKey) {
this.processQueryKey = processQueryKey;
return this;
}
public String getProcessQueryKey() {
return this.processQueryKey;
}
public PrivateChatQueryRequest setRobotCode(String robotCode) {
this.robotCode = robotCode;
return this;
}
public String getRobotCode() {
return this.robotCode;
}
}