
com.aliyun.dingtalkrobot_1_0.models.PrivateChatQueryRequest Maven / Gradle / Ivy
// 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy