/** * Constructor to create a DocumentTypeDeleteNoOpRequest * * @param id Unique request name * @param noOpIn Simulated response object */ public DocumentTypeDeleteNoOpRequest(String id, DocumentTypeObjectData noOpIn) { super(id, "DocumentTypeDeleteNoOpRequest"); if (noOpIn != null) { addInput( "DocumentType", DocumentTypeObjectHelper.toMap(noOpIn, new HashMap(), "DocumentType") .get("DocumentType")); } }
/** * Retrieves the DocumentTypeObjectData passed into the constructor * * @return Simulated response */ public DocumentTypeObjectData getOutput() { return DocumentTypeObjectHelper.fromMap(outputMap, "DocumentType"); }