public void translateToMap() {
   if (ASDCreateIn != null) {
     ASDCreateIn.resetFlags(true, true);
     addInput(
         "AddressStreetDirectional",
         AddressStreetDirectionalObjectHelper.toMap(
                 ASDCreateIn, new HashMap(), "AddressStreetDirectional")
             .get("AddressStreetDirectional"));
   }
 }
 /**
  * Constructor to create a AddressStreetDirectionalGetNoOpRequest
  *
  * @param id Unique request name
  * @param noOpIn Simulated response object
  */
 public AddressStreetDirectionalGetNoOpRequest(
     String id, AddressStreetDirectionalObjectData noOpIn) {
   super(id, "AddressStreetDirectionalGetNoOpRequest");
   if (noOpIn != null) {
     addInput(
         "AddressStreetDirectional",
         AddressStreetDirectionalObjectHelper.toMap(
                 noOpIn, new HashMap(), "AddressStreetDirectional")
             .get("AddressStreetDirectional"));
   }
 }
 /**
  * Retrieves the AddressStreetDirectionalObjectData passed into the constructor
  *
  * @return Simulated response
  */
 public AddressStreetDirectionalObjectData getOutput() {
   return AddressStreetDirectionalObjectHelper.fromMap(outputMap, "AddressStreetDirectional");
 }
 public void translateFromMap() {
   ASDCreateIn =
       AddressStreetDirectionalObjectHelper.fromMap(inputMap, "AddressStreetDirectional");
 }