aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai/model/ServiceSubscription.java
blob: 91582e816c7a1f0493641e7f2e64d90c596ed4ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package org.onap.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;


}