mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-18 00:10:20 +00:00
44 lines
786 B
Java
44 lines
786 B
Java
|
|
package com.bwssystems.HABridge.plugins.moziot;
|
|
|
|
import com.google.gson.annotations.Expose;
|
|
import com.google.gson.annotations.SerializedName;
|
|
|
|
public class Link {
|
|
|
|
@SerializedName("rel")
|
|
@Expose
|
|
private String rel;
|
|
@SerializedName("href")
|
|
@Expose
|
|
private String href;
|
|
@SerializedName("mediaType")
|
|
@Expose
|
|
private String mediaType;
|
|
|
|
public String getRel() {
|
|
return rel;
|
|
}
|
|
|
|
public void setRel(String rel) {
|
|
this.rel = rel;
|
|
}
|
|
|
|
public String getHref() {
|
|
return href;
|
|
}
|
|
|
|
public void setHref(String href) {
|
|
this.href = href;
|
|
}
|
|
|
|
public String getMediaType() {
|
|
return mediaType;
|
|
}
|
|
|
|
public void setMediaType(String mediaType) {
|
|
this.mediaType = mediaType;
|
|
}
|
|
|
|
}
|