io.github.zeroone3010.yahueapi.domain.GroupState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of yetanotherhueapi Show documentation
Show all versions of yetanotherhueapi Show documentation
A library for controlling Philips Hue lights.
package io.github.zeroone3010.yahueapi.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
public class GroupState {
@JsonProperty("all_on")
private boolean allOn;
@JsonProperty("any_on")
private boolean anyOn;
public boolean isAllOn() {
return allOn;
}
public void setAllOn(boolean allOn) {
this.allOn = allOn;
}
public boolean isAnyOn() {
return anyOn;
}
public void setAnyOn(boolean anyOn) {
this.anyOn = anyOn;
}
@Override
public String toString() {
return JsonStringUtil.toJsonString(this);
}
}