DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ModelResponse / Relationship.java
1
2 package json.response.ModelResponse;
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 Relationship {
10
11     @SerializedName("type")
12     private String mType;
13
14     public String getType() {
15         return mType;
16     }
17
18     public void setType(String type) {
19         mType = type;
20     }
21
22 }