package org.onap.vid.aai.model; import org.codehaus.jackson.annotate.JsonIgnore; import org.codehaus.jackson.annotate.JsonProperty; import java.util.HashMap; import java.util.Map; /** * Created by moriya1 on 08/10/2017. */ public class AaiRelationResponse { @JsonProperty("resource-version") private String resourceVersion; @JsonProperty("relationship-list") private RelationshipList relationshipList; @JsonIgnore private Map additionalProperties = new HashMap(); @JsonProperty("resource-version") public String getResourceVersion() { return resourceVersion; } @JsonProperty("resource-version") public void setResourceVersion(String resourceVersion) { this.resourceVersion = resourceVersion; } @JsonProperty("relationship-list") public RelationshipList getRelationshipList() { return relationshipList; } @JsonProperty("relationship-list") public void setRelationshipList(RelationshipList relationshipList) { this.relationshipList = relationshipList; } }