Continue Domoitcz impl

This commit is contained in:
Admin
2017-01-24 16:49:56 -06:00
parent d118dd8523
commit b4da321368
17 changed files with 402 additions and 429 deletions

View File

@@ -82,6 +82,12 @@ public class DeviceResult {
@SerializedName("Notifications")
@Expose
private String notifications;
@SerializedName("OffAction")
@Expose
private String offAction;
@SerializedName("OnAction")
@Expose
private String onAction;
@SerializedName("PlanID")
@Expose
private String planID;
@@ -343,6 +349,23 @@ public class DeviceResult {
this.notifications = notifications;
}
public String getOffAction() {
return offAction;
}
public void setOffAction(String offAction) {
this.offAction = offAction;
}
public String getOnAction() {
return onAction;
}
public void setOnAction(String onAction) {
this.onAction = onAction;
}
public String getPlanID() {
return planID;
}