vzaar/vzaar-api-ruby

View on GitHub
lib/vzaar_api/legacy_rendition.rb

Summary

Maintainability
A
0 mins
Test Coverage
module VzaarApi
  class LegacyRendition < Abstract

    ATTR_READERS = [:id, :type, :width, :height, :bitrate,
                    :status, :created_at, :updated_at].freeze

    prepend Lib::HasAttributes
    include Lib::HasCollectionBuilder

  end
end