cloud.genesys.webmessaging.sdk.model.BaseContentAttachment Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of web-messaging-sdk Show documentation
Show all versions of web-messaging-sdk Show documentation
A customer-side development kit for creating custom Genesys Cloud Web Messaging experiences
The newest version!
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.MediaType;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* BaseContentAttachment
*/
public class BaseContentAttachment implements Serializable {
private String id = null;
private String filename = null;
private Integer fileSize = null;
private MediaType mediaType = null;
private String mime = null;
private String sha256 = null;
private String text = null;
private String url = null;
/**
**/
public BaseContentAttachment id(String id) {
this.id = id;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("id")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
**/
public BaseContentAttachment filename(String filename) {
this.filename = filename;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("filename")
public String getFilename() {
return filename;
}
public void setFilename(String filename) {
this.filename = filename;
}
/**
**/
public BaseContentAttachment fileSize(Integer fileSize) {
this.fileSize = fileSize;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("fileSize")
public Integer getFileSize() {
return fileSize;
}
public void setFileSize(Integer fileSize) {
this.fileSize = fileSize;
}
/**
**/
public BaseContentAttachment mediaType(MediaType mediaType) {
this.mediaType = mediaType;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "")
@JsonProperty("mediaType")
public MediaType getMediaType() {
return mediaType;
}
public void setMediaType(MediaType mediaType) {
this.mediaType = mediaType;
}
/**
**/
public BaseContentAttachment mime(String mime) {
this.mime = mime;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("mime")
public String getMime() {
return mime;
}
public void setMime(String mime) {
this.mime = mime;
}
/**
**/
public BaseContentAttachment sha256(String sha256) {
this.sha256 = sha256;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("sha256")
public String getSha256() {
return sha256;
}
public void setSha256(String sha256) {
this.sha256 = sha256;
}
/**
**/
public BaseContentAttachment text(String text) {
this.text = text;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("text")
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
/**
**/
public BaseContentAttachment url(String url) {
this.url = url;
return this;
}
@ApiModelProperty(example = "null", value = "")
@JsonProperty("url")
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
BaseContentAttachment baseContentAttachment = (BaseContentAttachment) o;
return Objects.equals(this.id, baseContentAttachment.id) &&
Objects.equals(this.filename, baseContentAttachment.filename) &&
Objects.equals(this.fileSize, baseContentAttachment.fileSize) &&
Objects.equals(this.mediaType, baseContentAttachment.mediaType) &&
Objects.equals(this.mime, baseContentAttachment.mime) &&
Objects.equals(this.sha256, baseContentAttachment.sha256) &&
Objects.equals(this.text, baseContentAttachment.text) &&
Objects.equals(this.url, baseContentAttachment.url);
}
@Override
public int hashCode() {
return Objects.hash(id, filename, fileSize, mediaType, mime, sha256, text, url);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class BaseContentAttachment {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" filename: ").append(toIndentedString(filename)).append("\n");
sb.append(" fileSize: ").append(toIndentedString(fileSize)).append("\n");
sb.append(" mediaType: ").append(toIndentedString(mediaType)).append("\n");
sb.append(" mime: ").append(toIndentedString(mime)).append("\n");
sb.append(" sha256: ").append(toIndentedString(sha256)).append("\n");
sb.append(" text: ").append(toIndentedString(text)).append("\n");
sb.append(" url: ").append(toIndentedString(url)).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 ");
}
}