dashofcode/tracker_api

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

Summary

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

      attribute :change_type, String
      attribute :kind, String
      attribute :name, String
      attribute :new_values, Hash
      attribute :original_values, Hash
      attribute :story_type, String
    end
  end
end