/**
  * Creates new note in this ticket.
  * WARNING: Data is not sent to Kayako unless you explicitly call create() on this method's result.
  *
  * @param kyStaff $creator Creator (staff) of new note.
  * @param string $contents Contents of new note.
  * @return kyTicketNote
  */
 public function newNote(kyStaff $creator, $contents)
 {
     return kyTicketNote::createNew($this, $creator, $contents);
 }