Class: DropboxApi::Results::ListSharedLinksResult

Inherits:
Base
  • Object
show all
Defined in:
lib/dropbox_api/results/list_shared_links_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.



12
13
14
# File 'lib/dropbox_api/results/list_shared_links_result.rb', line 12

def cursor
  @data["cursor"]
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)


18
19
20
# File 'lib/dropbox_api/results/list_shared_links_result.rb', line 18

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

Shared links applicable to the path argument.



4
5
6
7
8
# File 'lib/dropbox_api/results/list_shared_links_result.rb', line 4

def links
  @entries ||= @data["links"].map do |entry|
    DropboxApi::Metadata::SharedLinkMetadata.new entry
  end
end