tech.deepdreams.worker.api.dtos.PositionDTO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of worker-api Show documentation
Show all versions of worker-api Show documentation
Payroll Worker API project for Java 17
package tech.deepdreams.worker.api.dtos;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import tech.deepdreams.worker.api.dtos.SubscriberDTO;
import org.openapitools.jackson.nullable.JsonNullable;
/**
* PositionDTO
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-09-12T20:34:13.781405-04:00[America/Toronto]")
public class PositionDTO {
@JsonProperty("id")
private Long id;
@JsonProperty("acronym")
private String acronym;
@JsonProperty("label")
private String label;
@JsonProperty("description")
private String description;
@JsonProperty("subscriber")
private SubscriberDTO subscriber;
public PositionDTO id(Long id) {
this.id = id;
return this;
}
/**
* Get id
* @return id
*/
@ApiModelProperty(value = "")
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public PositionDTO acronym(String acronym) {
this.acronym = acronym;
return this;
}
/**
* Get acronym
* @return acronym
*/
@ApiModelProperty(value = "")
public String getAcronym() {
return acronym;
}
public void setAcronym(String acronym) {
this.acronym = acronym;
}
public PositionDTO label(String label) {
this.label = label;
return this;
}
/**
* Get label
* @return label
*/
@ApiModelProperty(value = "")
public String getLabel() {
return label;
}
public void setLabel(String label) {
this.label = label;
}
public PositionDTO description(String description) {
this.description = description;
return this;
}
/**
* Get description
* @return description
*/
@ApiModelProperty(value = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public PositionDTO subscriber(SubscriberDTO subscriber) {
this.subscriber = subscriber;
return this;
}
/**
* Get subscriber
* @return subscriber
*/
@ApiModelProperty(value = "")
public SubscriberDTO getSubscriber() {
return subscriber;
}
public void setSubscriber(SubscriberDTO subscriber) {
this.subscriber = subscriber;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
PositionDTO position = (PositionDTO) o;
return Objects.equals(this.id, position.id) &&
Objects.equals(this.acronym, position.acronym) &&
Objects.equals(this.label, position.label) &&
Objects.equals(this.description, position.description) &&
Objects.equals(this.subscriber, position.subscriber);
}
@Override
public int hashCode() {
return Objects.hash(id, acronym, label, description, subscriber);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class PositionDTO {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" acronym: ").append(toIndentedString(acronym)).append("\n");
sb.append(" label: ").append(toIndentedString(label)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" subscriber: ").append(toIndentedString(subscriber)).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 ");
}
}