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