org.gs4tr.gcc.restclient.dto.ResponseData 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.dto;
import java.util.List;
import org.gs4tr.gcc.restclient.model.FileType;
import org.gs4tr.gcc.restclient.model.GCAttribute;
import org.gs4tr.gcc.restclient.model.GCFile;
import org.gs4tr.gcc.restclient.model.GCJob;
import org.gs4tr.gcc.restclient.model.GCTask;
import org.gs4tr.gcc.restclient.model.LocaleConfig;
import org.gs4tr.gcc.restclient.model.WordCount;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class ResponseData {
@JsonProperty("tasks_list")
private List tasksList;
@JsonProperty("files_list")
private List filesList;
@JsonProperty("jobs_list")
private List jobsList;
@JsonProperty("file_types")
private List fileTypes;
@JsonProperty("supported_locales")
private List supportedLocales;
@JsonProperty("wordcount_data")
private List wordcounts;
private List attributes;
@JsonProperty("current_page_number")
private Integer currentPageNumber;
@JsonProperty("total_records_count")
private Integer totalRecordsCount;
@JsonProperty("total_result_pages_count")
private Integer totalResultPagesCount;
@JsonProperty("file_id")
private String fileId;
@JsonProperty("node_id")
private String nodeId;
@JsonProperty("job_id")
private Long jobId;
private String name;
@JsonProperty("static_url")
private String staticUrl;
@JsonProperty("is_success")
private Boolean isSuccess;
@JsonProperty("user_session_key")
private String userSessionKey;
public ResponseData() {
}
public List getTasksList() {
return tasksList;
}
public void setTasksList(List tasksList) {
this.tasksList = tasksList;
}
public List getFilesList() {
return filesList;
}
public void setFilesList(List filesList) {
this.filesList = filesList;
}
public List getJobsList() {
return jobsList;
}
public void setJobsList(List jobsList) {
this.jobsList = jobsList;
}
public List getFileTypes() {
return fileTypes;
}
public void setFileTypes(List fileTypes) {
this.fileTypes = fileTypes;
}
public List getSupportedLocales() {
return supportedLocales;
}
public void setSupportedLocales(List supportedLocales) {
this.supportedLocales = supportedLocales;
}
public List getWordcounts() {
return wordcounts;
}
public void setWordcounts(List wordcounts) {
this.wordcounts = wordcounts;
}
public List getAttributes() {
return attributes;
}
public void setAttributes(List attributes) {
this.attributes = attributes;
}
public Integer getCurrentPageNumber() {
return currentPageNumber;
}
public void setCurrentPageNumber(Integer currentPageNumber) {
this.currentPageNumber = currentPageNumber;
}
public Integer getTotalRecordsCount() {
return totalRecordsCount;
}
public void setTotalRecordsCount(Integer totalRecordsCount) {
this.totalRecordsCount = totalRecordsCount;
}
public Integer getTotalResultPagesCount() {
return totalResultPagesCount;
}
public void setTotalResultPagesCount(Integer totalResultPagesCount) {
this.totalResultPagesCount = totalResultPagesCount;
}
public String getFileId() {
return fileId;
}
public void setFileId(String fileId) {
this.fileId = fileId;
}
public String getNodeId() {
return nodeId;
}
public void setNodeId(String nodeId) {
this.nodeId = nodeId;
}
public Long getJobId() {
return jobId;
}
public void setJobId(Long jobId) {
this.jobId = jobId;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getStaticUrl() {
return staticUrl;
}
public void setStaticUrl(String staticUrl) {
this.staticUrl = staticUrl;
}
public Boolean getIsSuccess() {
return isSuccess;
}
public void setIsSuccess(Boolean isSuccess) {
this.isSuccess = isSuccess;
}
public String getUserSessionKey() {
return userSessionKey;
}
public void setUserSessionKey(String userSessionKey) {
this.userSessionKey = userSessionKey;
}
}