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