/**
  * Patient Note Update
  *
  * @param:  BrightreeID of the Note
  * 
  * @required: Subject(max 200 characters), Description(max 8000 Characters)
  *			  Status, Severity, Reason, State(usertaskstate), Patientkey
  */
 public function PatientNoteUpdate($query)
 {
     $client = new SoapClient($this->wsdl, $this->connection);
     $response = $client->PatientNoteUpdate($query);
     $responsearray = json_decode(json_encode($response), true);
     return $responsearray;
 }