aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/openecomp/vid/aai/model/ServiceSubscription.java
blob: 02ddfd178df05c5d36ef643069d7b828f08e2092 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.openecomp.vid.aai.model;

import org.codehaus.jackson.annotate.JsonProperty;

public class ServiceSubscription {
	
    @JsonProperty("service-type")
    public String serviceType;

    @JsonProperty("resource-version")
    public String resourceVersion;

    @JsonProperty("service-instances")
    public ServiceInstances serviceInstances;


}