/**
  * Constructor to create a InvsLocationUpdateRequest
  *
  * @param id Unique request name
  * @param InvsLocationUpdateIn InvsLocationObjectData for InvsLocationUpdateRequest
  */
 @JsonCreator
 public InvsLocationUpdateRequest(
     @JsonProperty("RequestId") String id,
     @JsonProperty("InvsLocation") InvsLocationObjectData InvsLocationUpdateIn) {
   super(id, "InvsLocationUpdate");
   if (InvsLocationUpdateIn != null) {
     addInput(
         "InvsLocation",
         InvsLocationObjectHelper.toMap(InvsLocationUpdateIn, new HashMap(), "InvsLocation")
             .get("InvsLocation"));
   }
 }
 /**
  * Retrieves the InvsLocationObjectData that results from the InvsLocationUpdateRequest call
  *
  * @return InvsLocationObjectData resulting from udt call
  */
 public InvsLocationObjectData getOutput() {
   return InvsLocationObjectHelper.fromMap(outputMap, "InvsLocation");
 }