cloud.genesys.webmessaging.sdk.model.ContentQuickReplyV2 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.ContentQuickReply;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import java.io.Serializable;
/**
* Quick reply V2 content. Quick reply object V2.
*/
@ApiModel(description = "Quick reply V2 content. Quick reply object V2.")
public class ContentQuickReplyV2 implements Serializable {
private List actions = new ArrayList();
private String title = null;
/**
* An array of quick reply objects.
**/
public ContentQuickReplyV2 actions(List actions) {
this.actions = actions;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "An array of quick reply objects.")
@JsonProperty("actions")
public List getActions() {
return actions;
}
public void setActions(List actions) {
this.actions = actions;
}
/**
* Text to show as the title of the quick reply.
**/
public ContentQuickReplyV2 title(String title) {
this.title = title;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "Text to show as the title of the quick reply.")
@JsonProperty("title")
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ContentQuickReplyV2 contentQuickReplyV2 = (ContentQuickReplyV2) o;
return Objects.equals(this.actions, contentQuickReplyV2.actions) &&
Objects.equals(this.title, contentQuickReplyV2.title);
}
@Override
public int hashCode() {
return Objects.hash(actions, title);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ContentQuickReplyV2 {\n");
sb.append(" actions: ").append(toIndentedString(actions)).append("\n");
sb.append(" title: ").append(toIndentedString(title)).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 ");
}
}