org.symphonyoss.symphony.agent.model.V4RoomUpdated Maven / Gradle / Ivy
/*
* Agent API
* This document refers to Symphony API calls to send and receive messages and content. They need the on-premise Agent installed to perform decryption/encryption of content. - sessionToken and keyManagerToken can be obtained by calling the authenticationAPI on the symphony back end and the key manager respectively. Refer to the methods described in authenticatorAPI.yaml. - Actions are defined to be atomic, ie will succeed in their entirety or fail and have changed nothing. - If it returns a 40X status then it will have sent no message to any stream even if a request to aome subset of the requested streams would have succeeded. - If this contract cannot be met for any reason then this is an error and the response code will be 50X. - MessageML is a markup language for messages. See reference here: https://developers.symphony.com/documentation/message_format_reference
*
* OpenAPI spec version: 1.48.0
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* Do not edit the class manually.
*/
package org.symphonyoss.symphony.agent.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.symphonyoss.symphony.agent.model.V4RoomProperties;
import org.symphonyoss.symphony.agent.model.V4Stream;
/**
* V4RoomUpdated
*/
@javax.annotation.Generated(value = "io.swagger.codegen.languages.JavaClientCodegen", date = "2017-10-14T03:33:40.723-04:00")
public class V4RoomUpdated {
@JsonProperty("stream")
private V4Stream stream = null;
@JsonProperty("newRoomProperties")
private V4RoomProperties newRoomProperties = null;
public V4RoomUpdated stream(V4Stream stream) {
this.stream = stream;
return this;
}
/**
* Get stream
* @return stream
**/
@ApiModelProperty(example = "null", value = "")
public V4Stream getStream() {
return stream;
}
public void setStream(V4Stream stream) {
this.stream = stream;
}
public V4RoomUpdated newRoomProperties(V4RoomProperties newRoomProperties) {
this.newRoomProperties = newRoomProperties;
return this;
}
/**
* Get newRoomProperties
* @return newRoomProperties
**/
@ApiModelProperty(example = "null", value = "")
public V4RoomProperties getNewRoomProperties() {
return newRoomProperties;
}
public void setNewRoomProperties(V4RoomProperties newRoomProperties) {
this.newRoomProperties = newRoomProperties;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
V4RoomUpdated v4RoomUpdated = (V4RoomUpdated) o;
return Objects.equals(this.stream, v4RoomUpdated.stream) &&
Objects.equals(this.newRoomProperties, v4RoomUpdated.newRoomProperties);
}
@Override
public int hashCode() {
return Objects.hash(stream, newRoomProperties);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class V4RoomUpdated {\n");
sb.append(" stream: ").append(toIndentedString(stream)).append("\n");
sb.append(" newRoomProperties: ").append(toIndentedString(newRoomProperties)).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 ");
}
}