model.RoomSearchQuery 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.JsonProperty;
import java.util.List;
public class RoomSearchQuery {
private String query;
private List labels;
private Boolean active;
@JsonProperty("private")
private Boolean isPrivate;
private NumericId creator;
private NumericId owner;
private NumericId member;
public String getQuery() {
return query;
}
public void setQuery(String query) {
this.query = query;
}
public List getLabels() {
return labels;
}
public void setLabels(List labels) {
this.labels = labels;
}
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public Boolean getPrivate() {
return isPrivate;
}
public void setPrivate(Boolean aPrivate) {
isPrivate = aPrivate;
}
public NumericId getCreator() {
return creator;
}
public void setCreator(NumericId creator) {
this.creator = creator;
}
public NumericId getOwner() {
return owner;
}
public void setOwner(NumericId owner) {
this.owner = owner;
}
public NumericId getMember() {
return member;
}
public void setMember(NumericId member) {
this.member = member;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy