![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkhrm_1_0.models.QueryJobsResponseBody 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 QueryJobsResponseBody extends TeaModel {
@NameInMap("hasMore")
public Boolean hasMore;
@NameInMap("list")
public java.util.List list;
@NameInMap("nextToken")
public Long nextToken;
public static QueryJobsResponseBody build(java.util.Map map) throws Exception {
QueryJobsResponseBody self = new QueryJobsResponseBody();
return TeaModel.build(map, self);
}
public QueryJobsResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public QueryJobsResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public QueryJobsResponseBody setNextToken(Long nextToken) {
this.nextToken = nextToken;
return this;
}
public Long getNextToken() {
return this.nextToken;
}
public static class QueryJobsResponseBodyList extends TeaModel {
/**
* example:
* 职务描述
*/
@NameInMap("jobDescription")
public String jobDescription;
/**
* example:
* ac67286db74c48e28d787173ccc1a111
*/
@NameInMap("jobId")
public String jobId;
/**
* example:
* 总裁
*/
@NameInMap("jobName")
public String jobName;
public static QueryJobsResponseBodyList build(java.util.Map map) throws Exception {
QueryJobsResponseBodyList self = new QueryJobsResponseBodyList();
return TeaModel.build(map, self);
}
public QueryJobsResponseBodyList setJobDescription(String jobDescription) {
this.jobDescription = jobDescription;
return this;
}
public String getJobDescription() {
return this.jobDescription;
}
public QueryJobsResponseBodyList setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
public QueryJobsResponseBodyList setJobName(String jobName) {
this.jobName = jobName;
return this;
}
public String getJobName() {
return this.jobName;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy