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 DeviceElements; public List getDeviceElements() { return DeviceElements; } public void setDeviceElements(List deviceElements) { DeviceElements = deviceElements; } }