/**
  * Constructor to create a CitChannelCreateNoOpRequest
  *
  * @param id Unique request name
  * @param noOpIn Simulated response object
  */
 public CitChannelCreateNoOpRequest(String id, CitChannelObjectData noOpIn) {
   super(id, "CitChannelCreateNoOpRequest");
   if (noOpIn != null) {
     addInput(
         "CitChannel",
         CitChannelObjectHelper.toMap(noOpIn, new HashMap(), "CitChannel").get("CitChannel"));
   }
 }