com.mypurecloud.sdk.v2.guest.model.JourneyActionMap Maven / Gradle / Ivy
package com.mypurecloud.sdk.v2.guest.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.util.ArrayList;
import java.io.IOException;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
/**
* JourneyActionMap
*/
public class JourneyActionMap implements Serializable {
private String id = null;
private Integer version = null;
/**
* The ID of the actionMap in the Journey System which triggered this action
**/
public JourneyActionMap id(String id) {
this.id = id;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "The ID of the actionMap in the Journey System which triggered this action")
@JsonProperty("id")
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
/**
* The version number of the actionMap in the Journey System at the time this action was triggered
**/
public JourneyActionMap version(Integer version) {
this.version = version;
return this;
}
@ApiModelProperty(example = "null", required = true, value = "The version number of the actionMap in the Journey System at the time this action was triggered")
@JsonProperty("version")
public Integer getVersion() {
return version;
}
public void setVersion(Integer version) {
this.version = version;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
JourneyActionMap journeyActionMap = (JourneyActionMap) o;
return Objects.equals(this.id, journeyActionMap.id) &&
Objects.equals(this.version, journeyActionMap.version);
}
@Override
public int hashCode() {
return Objects.hash(id, version);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class JourneyActionMap {\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).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 ");
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy