org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / GetServiceModelsByDistributionStatusResponse.java
1 package org.onap.vid.aai.model;
2
3
4 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
5 import org.codehaus.jackson.annotate.JsonProperty;
6
7 import java.util.List;
8
9 /**
10  * Created by moriya1 on 15/10/2017.
11  */
12 @JsonIgnoreProperties(ignoreUnknown = true)
13 public class GetServiceModelsByDistributionStatusResponse {
14     @JsonProperty("results")
15     private List<Result> results;
16
17
18     @JsonProperty("results")
19     public List<Result> getResults() {
20         return results;
21     }
22
23     @JsonProperty("results")
24     public void setResults(List<Result> results) {
25         this.results = results;
26     }
27
28
29 }