/**
  * Constructor to create a GeoAreaInventoryAssocUpdateNoOpRequest
  *
  * @param id Unique request name
  * @param noOpIn Simulated response object
  */
 public GeoAreaInventoryAssocUpdateNoOpRequest(String id, GeoAreaInventoryAssocObjectData noOpIn) {
   super(id, "GeoAreaInventoryAssocUpdateNoOpRequest");
   if (noOpIn != null) {
     addInput(
         "GeoAreaInventoryAssoc",
         GeoAreaInventoryAssocObjectHelper.toMap(noOpIn, new HashMap(), "GeoAreaInventoryAssoc")
             .get("GeoAreaInventoryAssoc"));
   }
 }
 public void translateToMap() {
   if (GAIAFindIn != null) {
     Integer index = GAIAFindIn.getIndex();
     if (index != null) addInput("Index", index);
     addInput(
         "GeoAreaInventoryAssoc",
         GeoAreaInventoryAssocObjectHelper.toMap(
                 GAIAFindIn, new HashMap(), "GeoAreaInventoryAssoc")
             .get("GeoAreaInventoryAssoc"));
   }
 }
 /**
  * Retrieves the GeoAreaInventoryAssocObjectData passed into the constructor
  *
  * @return Simulated response
  */
 public GeoAreaInventoryAssocObjectData getOutput() {
   return GeoAreaInventoryAssocObjectHelper.fromMap(outputMap, "GeoAreaInventoryAssoc");
 }
 public void translateFromMap() {
   GAIAFindIn = GeoAreaInventoryAssocObjectHelper.fromMapFilter(inputMap, "GeoAreaInventoryAssoc");
 }