summaryrefslogtreecommitdiffstats
path: root/dcaedt_tools/src/main/java/json/response/ModelResponse/Relationship.java
blob: 78b3e0db6a66f351470b151413fdf070219e4a2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package json.response.ModelResponse;

import javax.annotation.Generated;
import com.google.gson.annotations.SerializedName;

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

    @SerializedName("type")
    private String mType;

    public String getType() {
        return mType;
    }

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

}