mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-26 18:27:38 +00:00
Add renumbering and HomeGenie Helper
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
package com.bwssystems.HABridge.plugins.homegenie;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class HomeGenieCommand {
|
||||
@SerializedName("moduleType")
|
||||
@Expose
|
||||
private String moduleType;
|
||||
@SerializedName("deviceId")
|
||||
@Expose
|
||||
private String deviceId;
|
||||
@SerializedName("command")
|
||||
@Expose
|
||||
private HomeGenieCommandDetail command;
|
||||
|
||||
public String getModuleType() {
|
||||
return moduleType;
|
||||
}
|
||||
|
||||
public void setModuleType(String moduleType) {
|
||||
this.moduleType = moduleType;
|
||||
}
|
||||
|
||||
public String getDeviceId() {
|
||||
return deviceId;
|
||||
}
|
||||
|
||||
public void setDeviceId(String deviceId) {
|
||||
this.deviceId = deviceId;
|
||||
}
|
||||
|
||||
public HomeGenieCommandDetail getCommand() {
|
||||
return command;
|
||||
}
|
||||
|
||||
public void setCommand(HomeGenieCommandDetail command) {
|
||||
this.command = command;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user