com.easilydo.sift.model.gen.Seat 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;
/**
* Seat
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Generated("org.jsonschema2pojo")
@JsonPropertyOrder({
"seatNumber",
"seatRow",
"seatingType"
})
public class Seat {
@JsonProperty("seatNumber")
private String seatNumber;
@JsonProperty("seatRow")
private String seatRow;
@JsonProperty("seatingType")
private String seatingType;
@JsonIgnore
private Map additionalProperties = new HashMap();
/**
*
* @return
* The seatNumber
*/
@JsonProperty("seatNumber")
public String getSeatNumber() {
return seatNumber;
}
/**
*
* @param seatNumber
* The seatNumber
*/
@JsonProperty("seatNumber")
public void setSeatNumber(String seatNumber) {
this.seatNumber = seatNumber;
}
/**
*
* @return
* The seatRow
*/
@JsonProperty("seatRow")
public String getSeatRow() {
return seatRow;
}
/**
*
* @param seatRow
* The seatRow
*/
@JsonProperty("seatRow")
public void setSeatRow(String seatRow) {
this.seatRow = seatRow;
}
/**
*
* @return
* The seatingType
*/
@JsonProperty("seatingType")
public String getSeatingType() {
return seatingType;
}
/**
*
* @param seatingType
* The seatingType
*/
@JsonProperty("seatingType")
public void setSeatingType(String seatingType) {
this.seatingType = seatingType;
}
@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(seatNumber).append(seatRow).append(seatingType).append(additionalProperties).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof Seat) == false) {
return false;
}
Seat rhs = ((Seat) other);
return new EqualsBuilder().append(seatNumber, rhs.seatNumber).append(seatRow, rhs.seatRow).append(seatingType, rhs.seatingType).append(additionalProperties, rhs.additionalProperties).isEquals();
}
}