fi.metatavu.restfulptv.server.rest.model.Email Maven / Gradle / Ivy
package fi.metatavu.restfulptv.server.rest.model;
import io.swagger.annotations.*;
import java.util.Objects;
public class Email {
private String value = null;
private String description = null;
private String language = null;
/**
**/
public Email value(String value) {
this.value = value;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
/**
**/
public Email description(String description) {
this.description = description;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
/**
**/
public Email language(String language) {
this.language = language;
return this;
}
@ApiModelProperty(example = "null", value = "")
public String getLanguage() {
return language;
}
public void setLanguage(String language) {
this.language = language;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
Email email = (Email) o;
return Objects.equals(value, email.value) &&
Objects.equals(description, email.description) &&
Objects.equals(language, email.language);
}
@Override
public int hashCode() {
return Objects.hash(value, description, language);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class Email {\n");
sb.append(" value: ").append(toIndentedString(value)).append("\n");
sb.append(" description: ").append(toIndentedString(description)).append("\n");
sb.append(" language: ").append(toIndentedString(language)).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 ");
}
}