org.onap migration
[vid.git] / vid-app-common / src / main / java / org / onap / vid / aai / model / AaiGetServicesRequestModel / Service.java
1 package org.onap.vid.aai.model.AaiGetServicesRequestModel;
2
3 import org.codehaus.jackson.annotate.JsonIgnoreProperties;
4 import org.codehaus.jackson.annotate.JsonProperty;
5
6 /**
7  * Created by Oren on 7/17/17.
8  */
9
10 @JsonIgnoreProperties(ignoreUnknown = true)
11 public class Service {
12     @JsonProperty("service-id")
13     public String serviceId;
14     @JsonProperty("service-description")
15     public String serviceDescription;
16     @JsonProperty("resource-version")
17     public String resourceVersion;
18     @JsonProperty("is-permitted")
19     public boolean isPermitted;
20
21 }