com.aliyun.dingtalkhrm_1_0.models.QueryJobsRequest 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class QueryJobsRequest extends TeaModel {
/**
* example:
* 工程师
*/
@NameInMap("jobName")
public String jobName;
/**
* This parameter is required.
*
* example:
* 20,最大为100
*/
@NameInMap("maxResults")
public Integer maxResults;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("nextToken")
public Integer nextToken;
public static QueryJobsRequest build(java.util.Map map) throws Exception {
QueryJobsRequest self = new QueryJobsRequest();
return TeaModel.build(map, self);
}
public QueryJobsRequest setJobName(String jobName) {
this.jobName = jobName;
return this;
}
public String getJobName() {
return this.jobName;
}
public QueryJobsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public QueryJobsRequest setNextToken(Integer nextToken) {
this.nextToken = nextToken;
return this;
}
public Integer getNextToken() {
return this.nextToken;
}
}