/**
  * Constructor to create a SystemParameterCreateRequest
  *
  * @param id Unique request name
  * @param SPCreateIn SPObjectData for SystemParameterCreateRequest
  */
 @JsonCreator
 public SystemParameterCreateRequest(
     @JsonProperty("RequestId") String id,
     @JsonProperty("SystemParameter") SPObjectData SPCreateIn) {
   super(id, "SystemParameterCreate");
   if (SPCreateIn != null) {
     addInput(
         "SystemParameter",
         SPObjectHelper.toMap(SPCreateIn, new HashMap(), "SystemParameter")
             .get("SystemParameter"));
   }
 }
 /**
  * Retrieves the SPObjectData that results from the SystemParameterCreateRequest call
  *
  * @return SPObjectData resulting from udt call
  */
 public SPObjectData getOutput() {
   return SPObjectHelper.fromMap(outputMap, "SystemParameter");
 }