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

com.aliyun.dingtalkcrm_1_0.models.ListGroupSetRequest 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 ListGroupSetRequest extends TeaModel {
    @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 ListGroupSetRequest build(java.util.Map map) throws Exception { ListGroupSetRequest self = new ListGroupSetRequest(); return TeaModel.build(map, self); } public ListGroupSetRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListGroupSetRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListGroupSetRequest setQueryDsl(String queryDsl) { this.queryDsl = queryDsl; return this; } public String getQueryDsl() { return this.queryDsl; } public ListGroupSetRequest setRelationType(String relationType) { this.relationType = relationType; return this; } public String getRelationType() { return this.relationType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy