com.aliyun.dingtalkcrm_1_0.models.QueryCrmGroupChatsRequest 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.dingtalkcrm_1_0.models;
import com.aliyun.tea.*;
public class QueryCrmGroupChatsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 10
*/
@NameInMap("maxResults")
public Integer maxResults;
@NameInMap("nextToken")
public String nextToken;
@NameInMap("queryDsl")
public String queryDsl;
/**
* This parameter is required.
*/
@NameInMap("relationType")
public String relationType;
public static QueryCrmGroupChatsRequest build(java.util.Map map) throws Exception {
QueryCrmGroupChatsRequest self = new QueryCrmGroupChatsRequest();
return TeaModel.build(map, self);
}
public QueryCrmGroupChatsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryCrmGroupChatsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public QueryCrmGroupChatsRequest setQueryDsl(String queryDsl) {
this.queryDsl = queryDsl;
return this;
}
public String getQueryDsl() {
return this.queryDsl;
}
public QueryCrmGroupChatsRequest setRelationType(String relationType) {
this.relationType = relationType;
return this;
}
public String getRelationType() {
return this.relationType;
}
}