mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
18 lines
414 B
Java
18 lines
414 B
Java
package com.bwssystems.hal;
|
|
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class DeviceName {
|
|
@SerializedName(value="DeviceName", alternate={"SceneName", "GroupName", "HVACName", "MacroName", "IrName", "IrButton"})
|
|
private String DeviceName;
|
|
|
|
public String getDeviceName() {
|
|
return DeviceName;
|
|
}
|
|
|
|
public void setDeviceName(String deviceName) {
|
|
DeviceName = deviceName;
|
|
}
|
|
|
|
}
|