function getProject($id, $native = false)
 {
     $project = $this->_makeAuthenticatedRequest($this->getAccountURL('projects/' . $id . '.json'));
     if ($native) {
         return Basecamp_Project::objectFromProject($project, $this);
     }
     return $project;
 }