Files
ha-bridge/src/main/java/com/bwssystems/hass/FieldElement.java
2016-12-08 16:41:23 -06:00

53 lines
902 B
Java

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;
}
}