cloud.genesys.webmessaging.sdk.model.WebMessagingQuickReply 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 com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* Quick reply object
*/
@ApiModel(description = "Quick reply object")
public class WebMessagingQuickReply implements Serializable {
private String text = null;
private String payload = null;
private String image = null;
private static class ActionEnumDeserializer extends StdDeserializer {
public ActionEnumDeserializer() {
super(ActionEnumDeserializer.class);
}
@Override
public ActionEnum deserialize(JsonParser jsonParser, DeserializationContext ctxt)
throws IOException {
JsonNode node = jsonParser.getCodec().readTree(jsonParser);
return ActionEnum.fromString(node.toString().replace("\"", ""));
}
}
/**
* Specifies the type of action that is triggered upon clicking the quick reply.
*/
@JsonDeserialize(using = ActionEnumDeserializer.class)
public enum ActionEnum {
OUTDATEDSDKVERSION("OutdatedSdkVersion"),
MESSAGE("Message");
private String value;
ActionEnum(String value) {
this.value = value;
}
@JsonCreator
public static ActionEnum fromString(String key) {
if (key == null) return null;
for (ActionEnum value : ActionEnum.values()) {
if (key.equalsIgnoreCase(value.toString())) {
return value;
}
}
return ActionEnum.values()[0];
}
@Override
@JsonValue
public String toString() {
return String.valueOf(value);
}
}
private ActionEnum action = null;
/**
* Text to show inside the quick reply. This is also used as the response text after clicking on the quick reply.
**/
public WebMessagingQuickReply text(String text) {
this.text = text;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "Text to show inside the quick reply. This is also used as the response text after clicking on the quick reply.")
@JsonProperty("text")
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
/**
* Content of the payload included in the quick reply response. Could be an ID identifying the quick reply response.
**/
public WebMessagingQuickReply payload(String payload) {
this.payload = payload;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "Content of the payload included in the quick reply response. Could be an ID identifying the quick reply response.")
@JsonProperty("payload")
public String getPayload() {
return payload;
}
public void setPayload(String payload) {
this.payload = payload;
}
/**
* URL of an image associated with the quick reply.
**/
public WebMessagingQuickReply image(String image) {
this.image = image;
return this;
}
@ApiModelProperty(example = "null", value = "URL of an image associated with the quick reply.")
@JsonProperty("image")
public String getImage() {
return image;
}
public void setImage(String image) {
this.image = image;
}
/**
* Specifies the type of action that is triggered upon clicking the quick reply.
**/
public WebMessagingQuickReply action(ActionEnum action) {
this.action = action;
return this;
}
@ApiModelProperty(example = "null", value = "Specifies the type of action that is triggered upon clicking the quick reply.")
@JsonProperty("action")
public ActionEnum getAction() {
return action;
}
public void setAction(ActionEnum action) {
this.action = action;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
WebMessagingQuickReply webMessagingQuickReply = (WebMessagingQuickReply) o;
return Objects.equals(this.text, webMessagingQuickReply.text) &&
Objects.equals(this.payload, webMessagingQuickReply.payload) &&
Objects.equals(this.image, webMessagingQuickReply.image) &&
Objects.equals(this.action, webMessagingQuickReply.action);
}
@Override
public int hashCode() {
return Objects.hash(text, payload, image, action);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class WebMessagingQuickReply {\n");
sb.append(" text: ").append(toIndentedString(text)).append("\n");
sb.append(" payload: ").append(toIndentedString(payload)).append("\n");
sb.append(" image: ").append(toIndentedString(image)).append("\n");
sb.append(" action: ").append(toIndentedString(action)).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 ");
}
}