/**
  * 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"));
   }
 }