Class: DropboxApi::Results::ListFolderResult

Inherits:
Base
  • Object
show all
Defined in:
lib/dropbox_api/results/list_folder_result.rb

Instance Method Summary collapse

Methods inherited from Base

#initialize

Constructor Details

This class inherits a constructor from DropboxApi::Results::Base

Instance Method Details

#cursorObject

Pass the cursor into list_folder_continue to see what's changed in the folder since your previous query.



13
14
15
# File 'lib/dropbox_api/results/list_folder_result.rb', line 13

def cursor
  @data['cursor']
end

#entriesObject

A collection of files and directories.



5
6
7
8
9
# File 'lib/dropbox_api/results/list_folder_result.rb', line 5

def entries
  @entries ||= @data['entries'].map do |entry|
    DropboxApi::Metadata::Resource.new entry
  end
end

#has_more?Boolean

If true, then there are more entries available. Pass the cursor to list_folder_continue to retrieve the rest.

Returns:

  • (Boolean)


19
20
21
# File 'lib/dropbox_api/results/list_folder_result.rb', line 19

def has_more?
  @data['has_more'].to_s == 'true'
end