aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetServicesRequestModel/Service.java
blob: 36b5a5140dbdd81a75e94973d659d3d49e1ee615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package org.onap.vid.aai.model.AaiGetServicesRequestModel;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Created by Oren on 7/17/17.
 */

@JsonIgnoreProperties(ignoreUnknown = true)
public class Service {
    @JsonProperty("service-id")
    public String serviceId;
    @JsonProperty("service-description")
    public String serviceDescription;
    @JsonProperty("resource-version")
    public String resourceVersion;
    @JsonProperty("is-permitted")
    public boolean isPermitted;

}