2  * ============LICENSE_START=======================================================
 
   4  * ================================================================================
 
   5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 
   6  * ================================================================================
 
   7  * Licensed under the Apache License, Version 2.0 (the "License");
 
   8  * you may not use this file except in compliance with the License.
 
   9  * You may obtain a copy of the License at
 
  11  *      http://www.apache.org/licenses/LICENSE-2.0
 
  13  * Unless required by applicable law or agreed to in writing, software
 
  14  * distributed under the License is distributed on an "AS IS" BASIS,
 
  15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 
  16  * See the License for the specific language governing permissions and
 
  17  * limitations under the License.
 
  18  * ============LICENSE_END=========================================================
 
  21 package org.onap.policy.aai.AAINQF199;
 
  23 import java.io.Serializable;
 
  25 import com.google.gson.annotations.SerializedName;
 
  27 public class AAINQF199InventoryResponseItem implements Serializable {
 
  32         private static final long serialVersionUID = 7142072567154675183L;
 
  34         @SerializedName("model-name")
 
  35         public String modelName;
 
  37         @SerializedName("vf-module")
 
  38         public AAINQF199VfModule vfModule;
 
  40         @SerializedName("service-instance")
 
  41         public AAINQF199ServiceInstance serviceInstance;
 
  43         @SerializedName("vserver")
 
  44         public AAINQF199VServer vserver;
 
  46         @SerializedName("tenant")
 
  47         public AAINQF199Tenant tenant;
 
  49         @SerializedName("cloud-region")
 
  50         public AAINQF199CloudRegion cloudRegion;
 
  52         @SerializedName("generic-vnf")
 
  53         public AAINQF199GenericVNF genericVNF;
 
  55         @SerializedName("extra-properties")
 
  56         public AAINQF199ExtraProperties extraProperties;
 
  58         @SerializedName("inventory-response-items")
 
  59         public AAINQF199InventoryResponseItems items;
 
  61         public AAINQF199InventoryResponseItem() {