fi.metatavu.kuntaapi.server.rest.model.ContactPhone Maven / Gradle / Ivy
package fi.metatavu.kuntaapi.server.rest.model;
import io.swagger.annotations.*;
import java.util.Objects;
public class ContactPhone {
private String type = null;
private String number = null;
/**
**/
public ContactPhone type(String type) {
this.type = type;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
/**
**/
public ContactPhone number(String number) {
this.number = number;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getNumber() {
return number;
}
public void setNumber(String number) {
this.number = number;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ContactPhone contactPhone = (ContactPhone) o;
return Objects.equals(type, contactPhone.type) &&
Objects.equals(number, contactPhone.number);
}
@Override
public int hashCode() {
return Objects.hash(type, number);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ContactPhone {\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append(" number: ").append(toIndentedString(number)).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 - 2024 Weber Informatics LLC | Privacy Policy