com.aliyun.ice20201109.models.ListBatchMediaProducingJobsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class ListBatchMediaProducingJobsRequest extends TeaModel {
/**
* example:
* 2023-06-05T15:59:59Z
*/
@NameInMap("EndTime")
public String endTime;
/**
* example:
* d80e4e4044975745c14b
*/
@NameInMap("JobId")
public String jobId;
/**
* example:
* Script
*/
@NameInMap("JobType")
public String jobType;
/**
* example:
* 100
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* example:
* mRZkKAovub0xWVfH14he4Q==
*/
@NameInMap("NextToken")
public String nextToken;
/**
* example:
* desc
*/
@NameInMap("SortBy")
public String sortBy;
/**
* example:
* 2022-02-02T00:00:00Z
*/
@NameInMap("StartTime")
public String startTime;
/**
* example:
* Finished
*/
@NameInMap("Status")
public String status;
public static ListBatchMediaProducingJobsRequest build(java.util.Map map) throws Exception {
ListBatchMediaProducingJobsRequest self = new ListBatchMediaProducingJobsRequest();
return TeaModel.build(map, self);
}
public ListBatchMediaProducingJobsRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public ListBatchMediaProducingJobsRequest setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
public ListBatchMediaProducingJobsRequest setJobType(String jobType) {
this.jobType = jobType;
return this;
}
public String getJobType() {
return this.jobType;
}
public ListBatchMediaProducingJobsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListBatchMediaProducingJobsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListBatchMediaProducingJobsRequest setSortBy(String sortBy) {
this.sortBy = sortBy;
return this;
}
public String getSortBy() {
return this.sortBy;
}
public ListBatchMediaProducingJobsRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
public ListBatchMediaProducingJobsRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}