summaryrefslogtreecommitdiffstats
path: root/dcaedt_tools/src/main/java/json/response/ModelResponse/Capability.java
blob: ced2415a87367a0c231971b99565248ac224898e (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
54
55
56
57
58
59
60
61
62
63
package json.response.ModelResponse;

import java.util.List;
import javax.annotation.Generated;
import com.google.gson.annotations.SerializedName;

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

    @SerializedName("dcae.capabilities.stream.subscribe")
    private DcaeCapabilitiesStreamSubscribe mDcaeCapabilitiesStreamSubscribe;
    @SerializedName("id")
    private String mId;
    @SerializedName("name")
    private String mName;
    @SerializedName("properties")
    private List<Property> mProperties;
    @SerializedName("type")
    private Type mType;

    public DcaeCapabilitiesStreamSubscribe getDcaeCapabilitiesStreamSubscribe() {
        return mDcaeCapabilitiesStreamSubscribe;
    }

    public void setDcaeCapabilitiesStreamSubscribe(DcaeCapabilitiesStreamSubscribe dcaeCapabilitiesStreamSubscribe) {
        mDcaeCapabilitiesStreamSubscribe = dcaeCapabilitiesStreamSubscribe;
    }

    public String getId() {
        return mId;
    }

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

    public String getName() {
        return mName;
    }

    public void setName(String name) {
        mName = name;
    }

    public List<Property> getProperties() {
        return mProperties;
    }

    public void setProperties(List<Property> properties) {
        mProperties = properties;
    }

    public Type getType() {
        return mType;
    }

    public void setType(Type type) {
        mType = type;
    }

}