ProcessInstance.notes

Fuego.Lib.Note[]

Returns the list of Notes that were added to the process instance. For example: //Create a Note create Note using text = "This is a Note for testing this instance" //Display Notes Information for each n in ProcessInstance.notes do display "Notes: " + n.text end