
com.aliyun.ice20201109.models.ListSmartJobsRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class ListSmartJobsRequest extends TeaModel {
@NameInMap("JobState")
public String jobState;
@NameInMap("JobType")
public String jobType;
@NameInMap("MaxResults")
public Long maxResults;
@NameInMap("NextToken")
public String nextToken;
@NameInMap("PageNo")
public Long pageNo;
@NameInMap("PageSize")
public Long pageSize;
@NameInMap("SortBy")
public String sortBy;
public static ListSmartJobsRequest build(java.util.Map map) throws Exception {
ListSmartJobsRequest self = new ListSmartJobsRequest();
return TeaModel.build(map, self);
}
public ListSmartJobsRequest setJobState(String jobState) {
this.jobState = jobState;
return this;
}
public String getJobState() {
return this.jobState;
}
public ListSmartJobsRequest setJobType(String jobType) {
this.jobType = jobType;
return this;
}
public String getJobType() {
return this.jobType;
}
public ListSmartJobsRequest setMaxResults(Long maxResults) {
this.maxResults = maxResults;
return this;
}
public Long getMaxResults() {
return this.maxResults;
}
public ListSmartJobsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListSmartJobsRequest setPageNo(Long pageNo) {
this.pageNo = pageNo;
return this;
}
public Long getPageNo() {
return this.pageNo;
}
public ListSmartJobsRequest setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
public ListSmartJobsRequest setSortBy(String sortBy) {
this.sortBy = sortBy;
return this;
}
public String getSortBy() {
return this.sortBy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy