module TrackerApi module Resources class ProjectMembership include Virtus.model attribute :id, Integer 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, TrackerApi::Resources::Person end end end