aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/aai/model/AaiGetServicesRequestModel/GetServicesAAIRespone.java
blob: d3dd7d26c7421b9abb743fcc448c54ad9214018b (plain)
1
2
3
4
5
6
7
8
9
10
11
package org.onap.vid.aai.model.AaiGetServicesRequestModel;

import org.codehaus.jackson.annotate.JsonIgnoreProperties;
import org.codehaus.jackson.annotate.JsonProperty;

import java.util.List;
@JsonIgnoreProperties(ignoreUnknown = true)
public class GetServicesAAIRespone {

    public List<Service> service;
}