mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-20 08:51:16 +00:00
44 lines
890 B
Java
44 lines
890 B
Java
|
|
package com.bwssystems.HABridge.plugins.fhem;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class Result {
|
|
|
|
@SerializedName("Name")
|
|
@Expose
|
|
private String name;
|
|
@SerializedName("PossibleSets")
|
|
@Expose
|
|
private String possibleSets;
|
|
@SerializedName("PossibleAttrs")
|
|
@Expose
|
|
private String possibleAttrs;
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public String getPossibleSets() {
|
|
return possibleSets;
|
|
}
|
|
|
|
public void setPossibleSets(String possibleSets) {
|
|
this.possibleSets = possibleSets;
|
|
}
|
|
|
|
public String getPossibleAttrs() {
|
|
return possibleAttrs;
|
|
}
|
|
|
|
public void setPossibleAttrs(String possibleAttrs) {
|
|
this.possibleAttrs = possibleAttrs;
|
|
}
|
|
|
|
}
|