org.gs4tr.gcc.restclient.request.JobTasksRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gcc-restclient Show documentation
Show all versions of gcc-restclient Show documentation
GlobalLink Connect Cloud java is a library to connect your system to GlobalLink Connect Cloud REST API.
package org.gs4tr.gcc.restclient.request;
import com.fasterxml.jackson.annotation.JsonProperty;
public class JobTasksRequest extends PageableRequest {
@JsonProperty("job_id")
private Long jobId;
public JobTasksRequest(Long jobId) {
this.jobId = jobId;
}
public JobTasksRequest(Long jobId, Long pageNumber, Long pageSize) {
super(pageNumber, pageSize);
this.jobId = jobId;
}
}