model.StreamListItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of symphony-api-client-java Show documentation
Show all versions of symphony-api-client-java Show documentation
Symphony API Client provided by Symphony Platform Solutions team
package model;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class StreamListItem {
private String id;
private Boolean crossPod;
private Boolean active;
private TypeObject streamType;
private StreamAttributes streamAttributes;
private RoomName roomAttributes;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Boolean getCrossPod() {
return crossPod;
}
public void setCrossPod(Boolean crossPod) {
this.crossPod = crossPod;
}
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public TypeObject getStreamType() {
return streamType;
}
public void setStreamType(TypeObject streamType) {
this.streamType = streamType;
}
public StreamAttributes getStreamAttributes() {
return streamAttributes;
}
public void setStreamAttributes(StreamAttributes streamAttributes) {
this.streamAttributes = streamAttributes;
}
public RoomName getRoomAttributes() {
return roomAttributes;
}
public void setRoomAttributes(RoomName roomAttributes) {
this.roomAttributes = roomAttributes;
}
public String getType(){
return streamType.getType();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy