summaryrefslogtreecommitdiffstats
path: root/dcaedt_tools/src/main/java/json/response/ItemsResponse/ItemsResponse.java
blob: 5b64b597500ac0e64a87a37eaa1e527c026fb419 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package json.response.ItemsResponse;

import javax.annotation.Generated;
import com.google.gson.annotations.SerializedName;
import json.response.Error;

@Generated("net.hexar.json2pojo")
@SuppressWarnings("unused")
public class ItemsResponse {

    @SerializedName("data")
    private Data mData;
    @SerializedName("error")
    private Error mError;
    @SerializedName("id")
    private Object mId;
    @SerializedName("timestamp")
    private Long mTimestamp;

    public Data getData() {
        return mData;
    }

    public void setData(Data data) {
        mData = data;
    }

    public Error getError() {
        return mError;
    }

    public void setError(Error error) {
        mError = error;
    }

    public Object getId() {
        return mId;
    }

    public void setId(Object id) {
        mId = id;
    }

    public Long getTimestamp() {
        return mTimestamp;
    }

    public void setTimestamp(Long timestamp) {
        mTimestamp = timestamp;
    }

}