Add title field

Change-Id: I17523cf62ef8dbc062eb5742f1c8dcf559c79028
diff --git a/User.php b/User.php
index aa7357c..1b459cf 100644
--- a/User.php
+++ b/User.php
@@ -6,6 +6,7 @@
 {
     public $id;
     public $username;
+    public $title;
     public $first_name;
     public $last_name;
     public $organization;
@@ -38,6 +39,7 @@
     {
         $this->id = "";
         $this->username = "";
+        $this->title = "";
         $this->first_name = "";
         $this->last_name = "";
         $this->email = "";