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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class QueryAllCustomerRequest extends TeaModel {
    /**
     * example:
     * 

100

*/ @NameInMap("maxResults") public Long maxResults; /** * example: *

100010

* * if can be null: *

true

*/ @NameInMap("nextToken") public String nextToken; /** * example: *

crm_customer

* * if can be null: *

true

*/ @NameInMap("objectType") public String objectType; /** * example: *

ding_userid

* * if can be null: *

true

*/ @NameInMap("operatorUserId") public String operatorUserId; public static QueryAllCustomerRequest build(java.util.Map map) throws Exception { QueryAllCustomerRequest self = new QueryAllCustomerRequest(); return TeaModel.build(map, self); } public QueryAllCustomerRequest setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public QueryAllCustomerRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryAllCustomerRequest setObjectType(String objectType) { this.objectType = objectType; return this; } public String getObjectType() { return this.objectType; } public QueryAllCustomerRequest setOperatorUserId(String operatorUserId) { this.operatorUserId = operatorUserId; return this; } public String getOperatorUserId() { return this.operatorUserId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy