Start building HomeAssistant interface.

This commit is contained in:
Admin
2016-12-08 16:41:23 -06:00
parent 2b1b70cf4f
commit 7677ed08d8
11 changed files with 713 additions and 4 deletions

View File

@@ -0,0 +1,52 @@
package com.bwssystems.hass;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
public class FieldElement {
@SerializedName("description")
@Expose
private String description;
@SerializedName("example")
@Expose
private String example;
/**
*
* @return
* The description
*/
public String getDescription() {
return description;
}
/**
*
* @param description
* The description
*/
public void setDescription(String description) {
this.description = description;
}
/**
*
* @return
* The example
*/
public String getExample() {
return example;
}
/**
*
* @param example
* The example
*/
public void setExample(String example) {
this.example = example;
}
}