
sts.oda.client.model.CandidateDocumentResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of on-demand-sdk-java Show documentation
Show all versions of on-demand-sdk-java Show documentation
Sterling On Demand Java SDK
/*
* on-demand-api
* The Sterling On Demand API allows you to integrate background checks into your platform and manage the process from end-to-end.
*
* OpenAPI spec version: 2018-05-08T16:44:26.238-07:00
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package sts.oda.client.model;
import java.util.Objects;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.threeten.bp.OffsetDateTime;
/**
* CandidateDocumentResponse
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2018-05-15T10:11:34.999-07:00")
public class CandidateDocumentResponse {
@SerializedName("candidateId")
private String candidateId = null;
@SerializedName("createdAt")
private OffsetDateTime createdAt = null;
@SerializedName("fileName")
private String fileName = null;
@SerializedName("fileType")
private String fileType = null;
@SerializedName("id")
private String id = null;
@SerializedName("updatedAt")
private OffsetDateTime updatedAt = null;
public CandidateDocumentResponse candidateId(String candidateId) {
this.candidateId = candidateId;
return this;
}
/**
* Get candidateId
* @return candidateId
**/
@ApiModelProperty(value = "")
public String getCandidateId() {
return candidateId;
}
public void setCandidateId(String candidateId) {
this.candidateId = candidateId;
}
public CandidateDocumentResponse createdAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
return this;
}
/**
* Get createdAt
* @return createdAt
**/
@ApiModelProperty(value = "")
public OffsetDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(OffsetDateTime createdAt) {
this.createdAt = createdAt;
}
public CandidateDocumentResponse fileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* Get fileName
* @return fileName
**/
@ApiModelProperty(value = "")
public String getFileName() {
return fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public CandidateDocumentResponse fileType(String fileType) {
this.fileType = fileType;
return this;
}
/**
* Get fileType
* @return fileType
**/
@ApiModelProperty(value = "")
public String getFileType() {
return fileType;
}
public void setFileType(String fileType) {
this.fileType = fileType;
}
public CandidateDocumentResponse id(String id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
**/
@ApiModelProperty(value = "")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public CandidateDocumentResponse updatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
return this;
}
/**
* Get updatedAt
* @return updatedAt
**/
@ApiModelProperty(value = "")
public OffsetDateTime getUpdatedAt() {
return updatedAt;
}
public void setUpdatedAt(OffsetDateTime updatedAt) {
this.updatedAt = updatedAt;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CandidateDocumentResponse candidateDocumentResponse = (CandidateDocumentResponse) o;
return Objects.equals(this.candidateId, candidateDocumentResponse.candidateId) &&
Objects.equals(this.createdAt, candidateDocumentResponse.createdAt) &&
Objects.equals(this.fileName, candidateDocumentResponse.fileName) &&
Objects.equals(this.fileType, candidateDocumentResponse.fileType) &&
Objects.equals(this.id, candidateDocumentResponse.id) &&
Objects.equals(this.updatedAt, candidateDocumentResponse.updatedAt);
}
@Override
public int hashCode() {
return Objects.hash(candidateId, createdAt, fileName, fileType, id, updatedAt);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CandidateDocumentResponse {\n");
sb.append(" candidateId: ").append(toIndentedString(candidateId)).append("\n");
sb.append(" createdAt: ").append(toIndentedString(createdAt)).append("\n");
sb.append(" fileName: ").append(toIndentedString(fileName)).append("\n");
sb.append(" fileType: ").append(toIndentedString(fileType)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" updatedAt: ").append(toIndentedString(updatedAt)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy