Sha256: a1931e9c23caa284a880acb9d9ad76717c878177fe61c5cc92d6c86ca863394b

Contents?: true

Size: 422 Bytes

Versions: 2

Compression:

Stored size: 422 Bytes

Contents

module TrackerApi
  module Resources
    class Label
      include Shared::HasId

      attribute :created_at, DateTime
      attribute :kind, String
      attribute :name, String
      attribute :project_id, Integer
      attribute :updated_at, DateTime

      class UpdateRepresenter < Representable::Decorator
        include Representable::JSON

        property :id
        property :name
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tracker_api-0.2.12 lib/tracker_api/resources/label.rb
tracker_api-0.2.11 lib/tracker_api/resources/label.rb