class DropboxApi::Results::ListSharedLinksResult

Public Instance Methods

cursor() click to toggle source

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

# File lib/dropbox_api/results/list_shared_links_result.rb, line 13
def cursor
  @data['cursor']
end
has_more?() click to toggle source

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

# File lib/dropbox_api/results/list_shared_links_result.rb, line 19
def has_more?
  @data['has_more'].to_s == 'true'
end