
com.hpe.caf.services.job.api.generated.model.DeleteJobs200Response Maven / Gradle / Ivy
The newest version!
package com.hpe.caf.services.job.api.generated.model;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.annotation.JsonTypeName;
@JsonTypeName("deleteJobs_200_response")
@jakarta.annotation.Generated(value = "org.openapitools.codegen.languages.JavaJAXRSSpecServerCodegen", date = "2024-10-23T20:35:51.516502756Z[Etc/UTC]")
public class DeleteJobs200Response {
private Long jobsDeleted;
/**
**/
public DeleteJobs200Response jobsDeleted(Long jobsDeleted) {
this.jobsDeleted = jobsDeleted;
return this;
}
@JsonProperty("jobsDeleted")
public Long getJobsDeleted() {
return jobsDeleted;
}
@JsonProperty("jobsDeleted")
public void setJobsDeleted(Long jobsDeleted) {
this.jobsDeleted = jobsDeleted;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
DeleteJobs200Response deleteJobs200Response = (DeleteJobs200Response) o;
return Objects.equals(this.jobsDeleted, deleteJobs200Response.jobsDeleted);
}
@Override
public int hashCode() {
return Objects.hash(jobsDeleted);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class DeleteJobs200Response {\n");
sb.append(" jobsDeleted: ").append(toIndentedString(jobsDeleted)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy