class Yandex::Disk::Client::Request::Private

Constants

BODY
HEADERS

Public Class Methods

new(http, path) click to toggle source
# File lib/yandex/disk/client/request/private.rb, line 13
def initialize http, path
  @http = http
  @path = path
end

Public Instance Methods

perform() click to toggle source
# File lib/yandex/disk/client/request/private.rb, line 18
def perform
  @http.run_request :proppatch, @path, BODY, HEADERS
  true
end