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

com.aliyun.dingtalkhrm_1_0.models.QueryJobsResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
        // 职务描述
        @NameInMap("jobDescription")
        public String jobDescription;

        // 职务ID
        @NameInMap("jobId")
        public String jobId;

        // 职务名称
        @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 - 2024 Weber Informatics LLC | Privacy Policy