cloud.genesys.webmessaging.sdk.model.BaseMessagingContent 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 cloud.genesys.webmessaging.sdk.model.BaseContentAttachment;
import cloud.genesys.webmessaging.sdk.model.ContentType;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* BaseMessagingContent
*/
public class BaseMessagingContent implements Serializable {
private BaseContentAttachment attachment = null;
private ContentType contentType = null;
/**
**/
public BaseMessagingContent attachment(BaseContentAttachment attachment) {
this.attachment = attachment;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("attachment")
public BaseContentAttachment getAttachment() {
return attachment;
}
public void setAttachment(BaseContentAttachment attachment) {
this.attachment = attachment;
}
/**
**/
public BaseMessagingContent contentType(ContentType contentType) {
this.contentType = contentType;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "")
@JsonProperty("contentType")
public ContentType getContentType() {
return contentType;
}
public void setContentType(ContentType contentType) {
this.contentType = contentType;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BaseMessagingContent baseMessagingContent = (BaseMessagingContent) o;
return Objects.equals(this.attachment, baseMessagingContent.attachment) &&
Objects.equals(this.contentType, baseMessagingContent.contentType);
}
@Override
public int hashCode() {
return Objects.hash(attachment, contentType);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BaseMessagingContent {\n");
sb.append(" attachment: ").append(toIndentedString(attachment)).append("\n");
sb.append(" contentType: ").append(toIndentedString(contentType)).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 ");
}
}