io.github.zeroone3010.yahueapi.v2.domain.Effects 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.
The newest version!
package io.github.zeroone3010.yahueapi.v2.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
import io.github.zeroone3010.yahueapi.v2.domain.update.EffectType;
import java.util.List;
public class Effects {
@JsonProperty("effect")
private EffectType effect;
@JsonProperty("status_values")
private List statusValues;
@JsonProperty("status")
private EffectType status;
@JsonProperty("effect_values")
private List effectValues;
public EffectType getEffect() {
return effect;
}
public List getStatusValues() {
return statusValues;
}
public EffectType getStatus() {
return status;
}
public List getEffectValues() {
return effectValues;
}
}