Continue Refactoring

This commit is contained in:
Admin
2016-12-28 16:44:41 -06:00
parent b7d6d099a6
commit 66d7306cda
68 changed files with 526 additions and 414 deletions

View File

@@ -0,0 +1,52 @@
package com.bwssystems.HABridge.plugins.hass;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class ServiceElement {
@SerializedName("description")
@Expose
private String description;
@SerializedName("fields")
@Expose
private Field fields;
/**
*
* @return
* The description
*/
public String getDescription() {
return description;
}
/**
*
* @param description
* The description
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* @return
* The fields
*/
public Field getFields() {
return fields;
}
/**
*
* @param fields
* The fields
*/
public void setField(Field fields) {
this.fields = fields;
}
}