Sha256: cfbeb37e0e6560b6996f948145476886783543b21829b569a0df389877b8ae0c
Contents?: true
Size: 483 Bytes
Versions: 14
Compression:
Stored size: 483 Bytes
Contents
module DropboxApi::Endpoints::Files class Download < DropboxApi::Endpoints::ContentDownload Method = :post Path = "/2/files/download".freeze ResultType = DropboxApi::Metadata::File ErrorType = DropboxApi::Errors::DownloadError # Download a file from a user's Dropbox. # # @param path [String] The path of the file to download. add_endpoint :download do |path, &block| perform_request({:path => path}, &block) end end end
Version data entries
14 entries across 14 versions & 1 rubygems