cloud.genesys.webmessaging.sdk.model.CleanMessagingRecipient Maven / Gradle / Ivy
package cloud.genesys.webmessaging.sdk.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.core.JsonParser;
import com.fasterxml.jackson.databind.DeserializationContext;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import com.fasterxml.jackson.databind.deser.std.StdDeserializer;
import java.util.Objects;
import java.io.IOException;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* CleanMessagingRecipient
*/
public class CleanMessagingRecipient implements Serializable {
private String firstName = null;
private String lastName = null;
private String nickname = null;
private String image = null;
/**
**/
public CleanMessagingRecipient firstName(String firstName) {
this.firstName = firstName;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("firstName")
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
/**
**/
public CleanMessagingRecipient lastName(String lastName) {
this.lastName = lastName;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("lastName")
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
/**
**/
public CleanMessagingRecipient nickname(String nickname) {
this.nickname = nickname;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("nickname")
public String getNickname() {
return nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
/**
**/
public CleanMessagingRecipient image(String image) {
this.image = image;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("image")
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CleanMessagingRecipient cleanMessagingRecipient = (CleanMessagingRecipient) o;
return Objects.equals(this.firstName, cleanMessagingRecipient.firstName) &&
Objects.equals(this.lastName, cleanMessagingRecipient.lastName) &&
Objects.equals(this.nickname, cleanMessagingRecipient.nickname) &&
Objects.equals(this.image, cleanMessagingRecipient.image);
}
@Override
public int hashCode() {
return Objects.hash(firstName, lastName, nickname, image);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class CleanMessagingRecipient {\n");
sb.append(" firstName: ").append(toIndentedString(firstName)).append("\n");
sb.append(" lastName: ").append(toIndentedString(lastName)).append("\n");
sb.append(" nickname: ").append(toIndentedString(nickname)).append("\n");
sb.append(" image: ").append(toIndentedString(image)).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(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}