dashofcode/tracker_api

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

Summary

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

      attribute :kind, String
      attribute :name, String
      attribute :story_type, String
      attribute :url, String
    end
  end
end