DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ItemsResponse / Model.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 Model {
10
11     @SerializedName("description")
12     private String mDescription;
13     @SerializedName("id")
14     private String mId;
15     @SerializedName("itemId")
16     private String mItemId;
17     @SerializedName("name")
18     private String mName;
19     @SerializedName("version")
20     private String mVersion;
21
22     public String getDescription() {
23         return mDescription;
24     }
25
26     public void setDescription(String description) {
27         mDescription = description;
28     }
29
30     public String getId() {
31         return mId;
32     }
33
34     public void setId(String id) {
35         mId = id;
36     }
37
38     public String getItemId() {
39         return mItemId;
40     }
41
42     public void setItemId(String itemId) {
43         mItemId = itemId;
44     }
45
46     public String getName() {
47         return mName;
48     }
49
50     public void setName(String name) {
51         mName = name;
52     }
53
54     public String getVersion() {
55         return mVersion;
56     }
57
58     public void setVersion(String version) {
59         mVersion = version;
60     }
61
62 }