DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ItemsResponse / Data.java
1
2 package json.response.ItemsResponse;
3
4 import javax.annotation.Generated;
5 import com.google.gson.annotations.SerializedName;
6
7 @Generated("net.hexar.json2pojo")
8 @SuppressWarnings("unused")
9 public class Data {
10
11     @SerializedName("element")
12     private Element mElement;
13
14     public Element getElement() {
15         return mElement;
16     }
17
18     public void setElement(Element element) {
19         mElement = element;
20     }
21
22 }