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

com.aliyun.dingtalkhrm_1_0.models.QueryJobsRequest 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.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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy