mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-22 09:22:23 +00:00
tested moziot and working
This commit is contained in:
@@ -1,18 +1,25 @@
|
||||
package com.bwssystems.HABridge.plugins.moziot;
|
||||
|
||||
import com.google.gson.annotations.Expose;
|
||||
import com.google.gson.annotations.SerializedName;
|
||||
|
||||
public class MozIotCommand {
|
||||
@SerializedName("url")
|
||||
@Expose
|
||||
private String url;
|
||||
private String command;
|
||||
@SerializedName("command")
|
||||
@Expose
|
||||
private MozIotCommandDetail command;
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
public String getCommand() {
|
||||
public MozIotCommandDetail getCommand() {
|
||||
return command;
|
||||
}
|
||||
public void setCommand(String command) {
|
||||
public void setCommand(MozIotCommandDetail command) {
|
||||
this.command = command;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user