mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
18 lines
540 B
Java
18 lines
540 B
Java
package com.bwssystems.HABridge.plugins.hal;
|
|
|
|
import java.util.List;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class DeviceElements {
|
|
@SerializedName(value="DeviceElements", alternate={"SceneElements", "GroupElements", "HVACElements", "MacroElements", "IrElements", "IrButtons"})
|
|
private List<DeviceName> DeviceElements;
|
|
|
|
public List<DeviceName> getDeviceElements() {
|
|
return DeviceElements;
|
|
}
|
|
|
|
public void setDeviceElements(List<DeviceName> deviceElements) {
|
|
DeviceElements = deviceElements;
|
|
}
|
|
}
|