<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -770,7 +770,36 @@ module FreshBooks
       expense_elems.map { |elem| self.new_from_xml(elem) }
     end
   end
-  
+    
+    #--------------------------------------------------------------------------
+    # Staff
+    #==========================================================================
+
+  Staff = BaseObject.new(:staff_id, :username, :first_name, :last_name, 
+    :email,  :business_phone, :mobile_phone, :rate, :last_login,
+    :number_of_logins, :signup_date, 
+    :street1, :street2, :city, :state, :country, :code)
+
+  class Staff
+    TYPE_MAPPINGS = { 'staff_id' =&gt; Fixnum }
+
+    def self.get(staff_id)
+      resp = FreshBooks::call_api('staff.get', 'staff_id' =&gt; staff_id)
+
+      resp.success? ? self.new_from_xml(resp.elements[1]) : nil
+    end
+
+    def self.list(options = {})
+      resp = FreshBooks::call_api('staff.list', options)
+
+      return nil unless resp.success?
+
+      staff_elems = resp.elements[1].elements
+      staff_elems.map { |elem| self.new_from_xml(elem) }
+    end
+
+  end
+    
 
 end
 </diff>
      <filename>freshbooks.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>71077ca2550fe052176cab163f83286be4caed72</id>
    </parent>
  </parents>
  <author>
    <name>Matt Culbreth</name>
    <email>mattc@cygnus.local</email>
  </author>
  <url>http://github.com/bentlegen/freshbooks.rb/commit/2e8cbb364fd412de100f8a3d86b325e8130b6706</url>
  <id>2e8cbb364fd412de100f8a3d86b325e8130b6706</id>
  <committed-date>2008-12-05T06:41:29-08:00</committed-date>
  <authored-date>2008-12-05T06:41:29-08:00</authored-date>
  <message>added Staff type</message>
  <tree>66597cec4ac1c244dccfacbfdf2e7daa5e5e733e</tree>
  <committer>
    <name>Matt Culbreth</name>
    <email>mattc@cygnus.local</email>
  </committer>
</commit>
