Sha256: 6c8d18b8fdcfdd91d2586b1631db38cd39079308bf3b5483e7ac2854bdad69ff
Contents?: true
Size: 643 Bytes
Versions: 8
Compression:
Stored size: 643 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::SharedLinkMetadata.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
8 entries across 8 versions & 1 rubygems