mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 16:17:30 +00:00
Fixes #129 Hue pass-thru always set to purple Fixes #406 Dimming with Home Assistant Fixes #414 Domoticz error retrieving devices
56 lines
1008 B
Java
56 lines
1008 B
Java
|
|
package com.bwssystems.HABridge.plugins.domoticz;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class DeviceResult {
|
|
@SerializedName("Description")
|
|
@Expose
|
|
private String description;
|
|
@SerializedName("Name")
|
|
@Expose
|
|
private String name;
|
|
@SerializedName("Type")
|
|
@Expose
|
|
private String type;
|
|
@SerializedName("idx")
|
|
@Expose
|
|
private String idx;
|
|
|
|
|
|
|
|
public String getDescription() {
|
|
return description;
|
|
}
|
|
|
|
public void setDescription(String description) {
|
|
this.description = description;
|
|
}
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getType() {
|
|
return type;
|
|
}
|
|
|
|
public void setType(String type) {
|
|
this.type = type;
|
|
}
|
|
|
|
public String getIdx() {
|
|
return idx;
|
|
}
|
|
|
|
public void setIdx(String idx) {
|
|
this.idx = idx;
|
|
}
|
|
|
|
}
|