com.easilydo.sift.model.gen.FoodEstablishment Maven / Gradle / Ivy
Show all versions of sift-sdk Show documentation
package com.easilydo.sift.model.gen;
import java.util.HashMap;
import java.util.Map;
import javax.annotation.Generated;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
* FoodEstablishment
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"address",
"name",
"telephone"
})
public class FoodEstablishment {
@JsonProperty("address")
private String address;
@JsonProperty("name")
private String name;
@JsonProperty("telephone")
private String telephone;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The address
*/
@JsonProperty("address")
public String getAddress() {
return address;
}
/**
*
* @param address
* The address
*/
@JsonProperty("address")
public void setAddress(String address) {
this.address = address;
}
/**
*
* @return
* The name
*/
@JsonProperty("name")
public String getName() {
return name;
}
/**
*
* @param name
* The name
*/
@JsonProperty("name")
public void setName(String name) {
this.name = name;
}
/**
*
* @return
* The telephone
*/
@JsonProperty("telephone")
public String getTelephone() {
return telephone;
}
/**
*
* @param telephone
* The telephone
*/
@JsonProperty("telephone")
public void setTelephone(String telephone) {
this.telephone = telephone;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@JsonAnyGetter
public Map getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(address).append(name).append(telephone).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof FoodEstablishment) == false) {
return false;
}
FoodEstablishment rhs = ((FoodEstablishment) other);
return new EqualsBuilder().append(address, rhs.address).append(name, rhs.name).append(telephone, rhs.telephone).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}