tech.deepdreams.worker.api.dtos.OperatorDTO 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;
/**
* OperatorDTO
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-09-14T12:54:23.701675700-04:00[America/Toronto]")
public class OperatorDTO {
@JsonProperty("id")
private Long id;
@JsonProperty("label")
private String label;
@JsonProperty("country")
private CountryDTO country;
@JsonProperty("headquaters")
private String headquaters;
@JsonProperty("webSite")
private String webSite;
@JsonProperty("phoneNumber")
private String phoneNumber;
@JsonProperty("emailAddress")
private String emailAddress;
public OperatorDTO 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 OperatorDTO 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 OperatorDTO 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 OperatorDTO headquaters(String headquaters) {
this.headquaters = headquaters;
return this;
}
/**
* Get headquaters
* @return headquaters
*/
@ApiModelProperty(value = "")
public String getHeadquaters() {
return headquaters;
}
public void setHeadquaters(String headquaters) {
this.headquaters = headquaters;
}
public OperatorDTO webSite(String webSite) {
this.webSite = webSite;
return this;
}
/**
* Get webSite
* @return webSite
*/
@ApiModelProperty(value = "")
public String getWebSite() {
return webSite;
}
public void setWebSite(String webSite) {
this.webSite = webSite;
}
public OperatorDTO phoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
/**
* Get phoneNumber
* @return phoneNumber
*/
@ApiModelProperty(value = "")
public String getPhoneNumber() {
return phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public OperatorDTO emailAddress(String emailAddress) {
this.emailAddress = emailAddress;
return this;
}
/**
* Get emailAddress
* @return emailAddress
*/
@ApiModelProperty(value = "")
public String getEmailAddress() {
return emailAddress;
}
public void setEmailAddress(String emailAddress) {
this.emailAddress = emailAddress;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
OperatorDTO operator = (OperatorDTO) o;
return Objects.equals(this.id, operator.id) &&
Objects.equals(this.label, operator.label) &&
Objects.equals(this.country, operator.country) &&
Objects.equals(this.headquaters, operator.headquaters) &&
Objects.equals(this.webSite, operator.webSite) &&
Objects.equals(this.phoneNumber, operator.phoneNumber) &&
Objects.equals(this.emailAddress, operator.emailAddress);
}
@Override
public int hashCode() {
return Objects.hash(id, label, country, headquaters, webSite, phoneNumber, emailAddress);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class OperatorDTO {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" label: ").append(toIndentedString(label)).append("\n");
sb.append(" country: ").append(toIndentedString(country)).append("\n");
sb.append(" headquaters: ").append(toIndentedString(headquaters)).append("\n");
sb.append(" webSite: ").append(toIndentedString(webSite)).append("\n");
sb.append(" phoneNumber: ").append(toIndentedString(phoneNumber)).append("\n");
sb.append(" emailAddress: ").append(toIndentedString(emailAddress)).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 ");
}
}