/**
  * Constructor to create a InvdThresholdGetNoOpRequest
  *
  * @param id Unique request name
  * @param noOpIn Simulated response object
  */
 public InvdThresholdGetNoOpRequest(String id, InvdThresholdObjectData noOpIn) {
   super(id, "InvdThresholdGetNoOpRequest");
   if (noOpIn != null) {
     addInput(
         "InvdThreshold",
         InvdThresholdObjectHelper.toMap(noOpIn, new HashMap(), "InvdThreshold")
             .get("InvdThreshold"));
   }
 }
 /**
  * Retrieves the InvdThresholdObjectData passed into the constructor
  *
  * @return Simulated response
  */
 public InvdThresholdObjectData getOutput() {
   return InvdThresholdObjectHelper.fromMap(outputMap, "InvdThreshold");
 }