DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_tools / src / main / java / json / response / ModelResponse / Property.java
1
2 package json.response.ModelResponse;
3
4 import java.util.List;
5 import javax.annotation.Generated;
6 import com.google.gson.annotations.SerializedName;
7
8 @Generated("net.hexar.json2pojo")
9 @SuppressWarnings("unused")
10 public class Property {
11
12     @SerializedName("assignment")
13     private Assignment mAssignment;
14     @SerializedName("format")
15     private List<Format> mFormat;
16     @SerializedName("name")
17     private String mName;
18     @SerializedName("type")
19     private String mType;
20
21     public Assignment getAssignment() {
22         return mAssignment;
23     }
24
25     public void setAssignment(Assignment assignment) {
26         mAssignment = assignment;
27     }
28
29     public List<Format> getFormat() {
30         return mFormat;
31     }
32
33     public void setFormat(List<Format> format) {
34         mFormat = format;
35     }
36
37     public String getName() {
38         return mName;
39     }
40
41     public void setName(String name) {
42         mName = name;
43     }
44
45     public String getType() {
46         return mType;
47     }
48
49     public void setType(String type) {
50         mType = type;
51     }
52
53 }