tech.deepdreams.worker.api.dtos.BankDTO 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;
/**
* BankDTO
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-09-24T04:57:07.737051-04:00[America/Toronto]")
public class BankDTO {
@JsonProperty("id")
private Long id;
@JsonProperty("code")
private String code;
@JsonProperty("codeSwift")
private String codeSwift;
@JsonProperty("label")
private String label;
@JsonProperty("country")
private CountryDTO country;
public BankDTO 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 BankDTO 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 BankDTO codeSwift(String codeSwift) {
this.codeSwift = codeSwift;
return this;
}
/**
* Get codeSwift
* @return codeSwift
*/
@ApiModelProperty(value = "")
public String getCodeSwift() {
return codeSwift;
}
public void setCodeSwift(String codeSwift) {
this.codeSwift = codeSwift;
}
public BankDTO 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 BankDTO 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;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BankDTO bank = (BankDTO) o;
return Objects.equals(this.id, bank.id) &&
Objects.equals(this.code, bank.code) &&
Objects.equals(this.codeSwift, bank.codeSwift) &&
Objects.equals(this.label, bank.label) &&
Objects.equals(this.country, bank.country);
}
@Override
public int hashCode() {
return Objects.hash(id, code, codeSwift, label, country);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BankDTO {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" codeSwift: ").append(toIndentedString(codeSwift)).append("\n");
sb.append(" label: ").append(toIndentedString(label)).append("\n");
sb.append(" country: ").append(toIndentedString(country)).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 ");
}
}