io.github.zeroone3010.yahueapi.v2.domain.ZoneResource 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 com.fasterxml.jackson.annotation.JsonTypeName;
import java.util.List;
@JsonTypeName("zone")
public class ZoneResource extends Resource implements GroupResource {
@JsonProperty("services")
private List services;
@JsonProperty("metadata")
private Metadata metadata;
@JsonProperty("children")
private List children;
@Override
public List getServices() {
return services;
}
@Override
public Metadata getMetadata() {
return metadata;
}
@Override
public List getChildren() {
return children;
}
}