dashofcode/tracker_api

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

Summary

Maintainability
A
0 mins
Test Coverage
module TrackerApi
  module Resources
    class TimeZone
      include Virtus.value_object

      values do
        attribute :offset, String
        attribute :olson_name, String
        attribute :kind, String
      end
    end
  end
end