mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-16 18:24:36 +00:00
53 lines
902 B
Java
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;
|
|
}
|
|
|
|
}
|