lib/tracker_api/resources/comment.rb in tracker_api-0.2.12 vs lib/tracker_api/resources/comment.rb in tracker_api-1.0.0

- old
+ new

@@ -1,19 +1,19 @@ module TrackerApi module Resources class Comment - include Shared::HasId + include Shared::Base attribute :story_id, Integer attribute :epic_id, Integer attribute :text, String attribute :person_id, Integer attribute :created_at, DateTime attribute :updated_at, DateTime - attribute :file_attachment_ids, Array[Integer] - attribute :google_attachment_ids, Array[Integer] + attribute :file_attachment_ids, Shared::Collection[Integer] + attribute :google_attachment_ids, Shared::Collection[Integer] attribute :commit_identifier, String attribute :commit_type, String attribute :kind, String end end -end \ No newline at end of file +end