Sha256: 13ad6bcd9ed7b2d2ddca08ab4ee0d02c126c8233349cef3d4ab632d6bb7989a2
Contents?: true
Size: 635 Bytes
Versions: 10
Compression:
Stored size: 635 Bytes
Contents
module DropboxApi::Results class ListSharedLinksResult < DropboxApi::Results::Base # Shared links applicable to the path argument. def links @entries ||= @data["links"].map do |entry| DropboxApi::Metadata::SharedLink.new entry end end # Pass the cursor into `list_folder_continue` to see what's changed in the # folder since your previous query. def cursor @data["cursor"] end # If true, then there are more entries available. Pass the cursor to # `list_folder_continue` to retrieve the rest. def has_more? @data["has_more"].to_s == "true" end end end
Version data entries
10 entries across 10 versions & 1 rubygems