DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ItemsResponse / Element.java
1
2 package json.response.ItemsResponse;
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("id")
13     private Long mId;
14     @SerializedName("itemId")
15     private String mItemId;
16     @SerializedName("items")
17     private List<Item> mItems;
18     @SerializedName("name")
19     private String mName;
20
21     public Long getId() {
22         return mId;
23     }
24
25     public void setId(Long id) {
26         mId = id;
27     }
28
29     public String getItemId() {
30         return mItemId;
31     }
32
33     public void setItemId(String itemId) {
34         mItemId = itemId;
35     }
36
37     public List<Item> getItems() {
38         return mItems;
39     }
40
41     public void setItems(List<Item> items) {
42         mItems = items;
43     }
44
45     public String getName() {
46         return mName;
47     }
48
49     public void setName(String name) {
50         mName = name;
51     }
52
53 }