dashofcode/tracker_api

View on GitHub
lib/tracker_api/resources/me.rb

Summary

Maintainability
A
0 mins
Test Coverage
module TrackerApi
  module Resources
    class Me
      include Shared::Base

      attribute :name, String
      attribute :initials, String
      attribute :username, String
      attribute :time_zone, TimeZone
      attribute :api_token, String
      attribute :has_google_identity, Boolean
      attribute :project_ids, [Integer]
      attribute :projects, [MembershipSummary]
      attribute :workspace_ids, [Integer]
      attribute :workspaces, [Workspace]
      attribute :email, String
      attribute :receives_in_app_notifications, Boolean
      attribute :kind, String
    end
  end
end