com.aliyun.dingtalkats_1_0.models.QueryCandidatesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// 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;
}
}