lib/tracker_api/resources/me.rb in tracker_api-0.2.10 vs lib/tracker_api/resources/me.rb in tracker_api-0.2.11

- old
+ new

@@ -1,17 +1,17 @@ module TrackerApi module Resources class Me - include Resources::Base + include Shared::HasId attribute :name, String attribute :initials, String attribute :username, String - attribute :time_zone, TrackerApi::Resources::TimeZone + attribute :time_zone, TimeZone attribute :api_token, String attribute :has_google_identity, Boolean attribute :project_ids, Array[Integer] - attribute :projects, [TrackerApi::Resources::MembershipSummary] + attribute :projects, [MembershipSummary] attribute :workspace_ids, Array[Integer] attribute :email, String attribute :receives_in_app_notifications, Boolean attribute :kind, String end