lib/xeroizer/models/organisation.rb in xeroizer-2.15.5 vs lib/xeroizer/models/organisation.rb in xeroizer-2.15.6
- old
+ new
@@ -11,10 +11,11 @@
class Organisation < Base
string :api_key, :api_name => 'APIKey'
string :name
string :legal_name
+ string :short_code
boolean :pays_tax
string :version
string :organisation_type
string :base_currency
string :country_code
@@ -24,11 +25,15 @@
integer :financial_year_end_month
date :period_lock_date
date :end_of_year_lock_date
string :tax_number
string :registration_number
+ string :timezone
datetime :created_date_utc, :api_name => 'CreatedDateUTC'
+ has_many :addresses
+ has_many :phones
+
end
end
-end
\ No newline at end of file
+end