Sha256: f480c3f4e0a393a62d8621830c10d986bc2c0973e97c28b3f0f666ae6dde365d
Contents?: true
Size: 620 Bytes
Versions: 13
Compression:
Stored size: 620 Bytes
Contents
module DropboxApi::Endpoints::Sharing class UnshareFile < DropboxApi::Endpoints::Rpc Method = :post Path = "/2/sharing/unshare_file".freeze ResultType = DropboxApi::Results::VoidResult ErrorType = DropboxApi::Errors::UnshareFileError # Remove all members from this file. Does not remove inherited members. # # A successful response indicates that the file was unshared. # # @param file [String] Path or ID of the file in the user's Dropbox to unshare. add_endpoint :unshare_file do |file| perform_request({ :file => file }) end end end
Version data entries
13 entries across 13 versions & 1 rubygems