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

com.aliyun.dingtalkcrm_1_0.models.QueryCrmGroupChatsRequest Maven / Gradle / Ivy

The newest version!
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy