Merge from ECOMP's repository
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / RelatedToProperty.java
1 package org.onap.vid.aai.model;
2
3
4 import com.fasterxml.jackson.annotation.JsonAlias;
5 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
6
7 @JsonIgnoreProperties(ignoreUnknown = true)
8 public class RelatedToProperty {
9
10         public String getPropertyKey() {
11                 return propertyKey;
12         }
13
14
15         @JsonAlias("property-key")
16         public void setPropertyKey(String propertyKey) {
17                 this.propertyKey = propertyKey;
18         }
19
20
21         public String getPropertyValue() {
22                 return propertyValue;
23         }
24
25
26         @JsonAlias("property-value")
27         public void setPropertyValue(String propertyValue) {
28                 this.propertyValue = propertyValue;
29         }
30
31
32         public String propertyKey;
33
34
35         public String propertyValue;
36
37 }