dashofcode/tracker_api

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

Summary

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

      attribute :kind, String
      attribute :name, String
      attribute :email, String
      attribute :initials, String
      attribute :username, String
    end
  end
end