dashofcode/tracker_api

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

Summary

Maintainability
A
15 mins
Test Coverage
module TrackerApi
  module Resources
    class ProjectMembership
      include Shared::Base

      attribute :person_id, Integer
      attribute :project_id, Integer
      attribute :role, String
      attribute :project_color, String
      attribute :wants_comment_notification_emails, Boolean
      attribute :kind, String
      attribute :person, Person
    end
  end
end