tech.deepdreams.worker.api.dtos.ConstantDTO 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.CountryDTO;
import org.openapitools.jackson.nullable.JsonNullable;
/**
* ConstantDTO
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-09-20T05:23:49.528005100-04:00[America/Toronto]")
public class ConstantDTO {
@JsonProperty("id")
private Long id;
@JsonProperty("code")
private String code;
@JsonProperty("label")
private String label;
@JsonProperty("country")
private CountryDTO country;
@JsonProperty("defaultValue")
private Double defaultValue;
@JsonProperty("minValue")
private Double minValue;
@JsonProperty("maxValue")
private Double maxValue;
@JsonProperty("description")
private String description;
public ConstantDTO 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 ConstantDTO code(String code) {
this.code = code;
return this;
}
/**
* Get code
* @return code
*/
@ApiModelProperty(value = "")
public String getCode() {
return code;
}
public void setCode(String code) {
this.code = code;
}
public ConstantDTO 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 ConstantDTO country(CountryDTO country) {
this.country = country;
return this;
}
/**
* Get country
* @return country
*/
@ApiModelProperty(value = "")
public CountryDTO getCountry() {
return country;
}
public void setCountry(CountryDTO country) {
this.country = country;
}
public ConstantDTO defaultValue(Double defaultValue) {
this.defaultValue = defaultValue;
return this;
}
/**
* Get defaultValue
* @return defaultValue
*/
@ApiModelProperty(value = "")
public Double getDefaultValue() {
return defaultValue;
}
public void setDefaultValue(Double defaultValue) {
this.defaultValue = defaultValue;
}
public ConstantDTO minValue(Double minValue) {
this.minValue = minValue;
return this;
}
/**
* Get minValue
* @return minValue
*/
@ApiModelProperty(value = "")
public Double getMinValue() {
return minValue;
}
public void setMinValue(Double minValue) {
this.minValue = minValue;
}
public ConstantDTO maxValue(Double maxValue) {
this.maxValue = maxValue;
return this;
}
/**
* Get maxValue
* @return maxValue
*/
@ApiModelProperty(value = "")
public Double getMaxValue() {
return maxValue;
}
public void setMaxValue(Double maxValue) {
this.maxValue = maxValue;
}
public ConstantDTO 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;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConstantDTO constant = (ConstantDTO) o;
return Objects.equals(this.id, constant.id) &&
Objects.equals(this.code, constant.code) &&
Objects.equals(this.label, constant.label) &&
Objects.equals(this.country, constant.country) &&
Objects.equals(this.defaultValue, constant.defaultValue) &&
Objects.equals(this.minValue, constant.minValue) &&
Objects.equals(this.maxValue, constant.maxValue) &&
Objects.equals(this.description, constant.description);
}
@Override
public int hashCode() {
return Objects.hash(id, code, label, country, defaultValue, minValue, maxValue, description);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConstantDTO {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" label: ").append(toIndentedString(label)).append("\n");
sb.append(" country: ").append(toIndentedString(country)).append("\n");
sb.append(" defaultValue: ").append(toIndentedString(defaultValue)).append("\n");
sb.append(" minValue: ").append(toIndentedString(minValue)).append("\n");
sb.append(" maxValue: ").append(toIndentedString(maxValue)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).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 ");
}
}