/**
  * Constructor to create a PaymentTransGetNoOpRequest
  *
  * @param id Unique request name
  * @param noOpIn Simulated response object
  */
 public PaymentTransGetNoOpRequest(String id, PaymentTransObjectData noOpIn) {
   super(id, "PaymentTransGetNoOpRequest");
   if (noOpIn != null) {
     addInput(
         "PaymentTrans",
         PaymentTransObjectHelper.toMap(noOpIn, new HashMap(), "PaymentTrans")
             .get("PaymentTrans"));
   }
 }
 public void translateToMap() {
   if (noOpIn != null) {
     noOpIn.resetFlags(true, true);
     addInput(
         "PaymentTrans",
         PaymentTransObjectHelper.toMap(noOpIn, new HashMap(), "PaymentTrans")
             .get("PaymentTrans"));
   }
 }