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

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

There is a newer version: 2.1.30
Show 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 QueryCrmPersonalCustomerRequest extends TeaModel {
    // 用户ID
    @NameInMap("currentOperatorUserId")
    public String currentOperatorUserId;

    // 分页条数
    @NameInMap("maxResults")
    public Integer maxResults;

    // 分页页码
    @NameInMap("nextToken")
    public String nextToken;

    // 查询条件
    @NameInMap("queryDsl")
    public String queryDsl;

    @NameInMap("relationType")
    public String relationType;

    public static QueryCrmPersonalCustomerRequest build(java.util.Map map) throws Exception {
        QueryCrmPersonalCustomerRequest self = new QueryCrmPersonalCustomerRequest();
        return TeaModel.build(map, self);
    }

    public QueryCrmPersonalCustomerRequest setCurrentOperatorUserId(String currentOperatorUserId) {
        this.currentOperatorUserId = currentOperatorUserId;
        return this;
    }
    public String getCurrentOperatorUserId() {
        return this.currentOperatorUserId;
    }

    public QueryCrmPersonalCustomerRequest setMaxResults(Integer maxResults) {
        this.maxResults = maxResults;
        return this;
    }
    public Integer getMaxResults() {
        return this.maxResults;
    }

    public QueryCrmPersonalCustomerRequest setNextToken(String nextToken) {
        this.nextToken = nextToken;
        return this;
    }
    public String getNextToken() {
        return this.nextToken;
    }

    public QueryCrmPersonalCustomerRequest setQueryDsl(String queryDsl) {
        this.queryDsl = queryDsl;
        return this;
    }
    public String getQueryDsl() {
        return this.queryDsl;
    }

    public QueryCrmPersonalCustomerRequest setRelationType(String relationType) {
        this.relationType = relationType;
        return this;
    }
    public String getRelationType() {
        return this.relationType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy