DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ElementsResponse / Element.java
1
2 package json.response.ElementsResponse;
3
4 import java.util.List;
5 import javax.annotation.Generated;
6 import com.google.gson.annotations.SerializedName;
7
8 @Generated("net.hexar.json2pojo")
9 @SuppressWarnings("unused")
10 public class Element {
11
12     @SerializedName("catalog")
13     private String mCatalog;
14     @SerializedName("catalogId")
15     private Long mCatalogId;
16     @SerializedName("id")
17     private Long mId;
18     @SerializedName("itemId")
19     private String mItemId;
20     @SerializedName("labels")
21     private List<String> mLabels;
22     @SerializedName("name")
23     private String mName;
24
25     public String getCatalog() {
26         return mCatalog;
27     }
28
29     public void setCatalog(String catalog) {
30         mCatalog = catalog;
31     }
32
33     public Long getCatalogId() {
34         return mCatalogId;
35     }
36
37     public void setCatalogId(Long catalogId) {
38         mCatalogId = catalogId;
39     }
40
41     public Long getId() {
42         return mId;
43     }
44
45     public void setId(Long id) {
46         mId = id;
47     }
48
49     public String getItemId() {
50         return mItemId;
51     }
52
53     public void setItemId(String itemId) {
54         mItemId = itemId;
55     }
56
57     public List<String> getLabels() {
58         return mLabels;
59     }
60
61     public void setLabels(List<String> labels) {
62         mLabels = labels;
63     }
64
65     public String getName() {
66         return mName;
67     }
68
69     public void setName(String name) {
70         mName = name;
71     }
72
73 }