From 26288c458b5606a6449de4480645d97fa639d5ac Mon Sep 17 00:00:00 2001 From: stve Date: Sun, 30 Aug 2015 22:50:39 -0400 Subject: [PATCH] update attribute types for folder model --- lib/instapaper/folder.rb | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/instapaper/folder.rb b/lib/instapaper/folder.rb index ee1d808..cbd9516 100644 --- a/lib/instapaper/folder.rb +++ b/lib/instapaper/folder.rb @@ -5,11 +5,13 @@ module Instapaper include Virtus.value_object values do - attribute :type, String - attribute :folder_id, String attribute :title, String - attribute :sync_to_mobile, String + attribute :display_title, String + attribute :sync_to_mobile, Axiom::Types::Boolean + attribute :folder_id, Integer attribute :position, String + attribute :type, String + attribute :slug, String end end end