mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-20 16:59:53 +00:00
27 lines
563 B
Java
27 lines
563 B
Java
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;
|
|
@SerializedName("command")
|
|
@Expose
|
|
private MozIotCommandDetail command;
|
|
public String getUrl() {
|
|
return url;
|
|
}
|
|
public void setUrl(String url) {
|
|
this.url = url;
|
|
}
|
|
public MozIotCommandDetail getCommand() {
|
|
return command;
|
|
}
|
|
public void setCommand(MozIotCommandDetail command) {
|
|
this.command = command;
|
|
}
|
|
|
|
}
|