DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ItemsResponse / ItemsResponse.java
1
2 package json.response.ItemsResponse;
3
4 import javax.annotation.Generated;
5 import com.google.gson.annotations.SerializedName;
6 import json.response.Error;
7
8 @Generated("net.hexar.json2pojo")
9 @SuppressWarnings("unused")
10 public class ItemsResponse {
11
12     @SerializedName("data")
13     private Data mData;
14     @SerializedName("error")
15     private Error mError;
16     @SerializedName("id")
17     private Object mId;
18     @SerializedName("timestamp")
19     private Long mTimestamp;
20
21     public Data getData() {
22         return mData;
23     }
24
25     public void setData(Data data) {
26         mData = data;
27     }
28
29     public Error getError() {
30         return mError;
31     }
32
33     public void setError(Error error) {
34         mError = error;
35     }
36
37     public Object getId() {
38         return mId;
39     }
40
41     public void setId(Object id) {
42         mId = id;
43     }
44
45     public Long getTimestamp() {
46         return mTimestamp;
47     }
48
49     public void setTimestamp(Long timestamp) {
50         mTimestamp = timestamp;
51     }
52
53 }