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

com.aliyun.dingtalkats_1_0.models.QueryCandidatesRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkats_1_0.models;

import com.aliyun.tea.*;

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

20

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

154XXX

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

This parameter is required.

* * example: *

entry

*/ @NameInMap("statId") public String statId; /** *

This parameter is required.

* * example: *

013224566462XXXXXXXXXX

*/ @NameInMap("opUserId") public String opUserId; public static QueryCandidatesRequest build(java.util.Map map) throws Exception { QueryCandidatesRequest self = new QueryCandidatesRequest(); return TeaModel.build(map, self); } public QueryCandidatesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryCandidatesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryCandidatesRequest setStatId(String statId) { this.statId = statId; return this; } public String getStatId() { return this.statId; } public QueryCandidatesRequest setOpUserId(String opUserId) { this.opUserId = opUserId; return this; } public String getOpUserId() { return this.opUserId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy