mirror of
https://github.com/samsonjs/instapaper.git
synced 2026-04-17 12:45:48 +00:00
16 lines
318 B
Ruby
16 lines
318 B
Ruby
require 'virtus'
|
|
|
|
module Instapaper
|
|
class Highlight
|
|
include Virtus.value_object
|
|
|
|
values do
|
|
attribute :type, String
|
|
attribute :highlight_id, String
|
|
attribute :bookmark_id, String
|
|
attribute :text, String
|
|
attribute :position, String
|
|
attribute :time, String
|
|
end
|
|
end
|
|
end
|