class SabredavClient::XmlRequestBuilder::PropfindOwner

Public Class Methods

new() click to toggle source
# File lib/sabredav_client/xml_request_builder/propfind_owner.rb, line 6
def initialize
  super()
end

Public Instance Methods

to_xml() click to toggle source
# File lib/sabredav_client/xml_request_builder/propfind_owner.rb, line 10
def to_xml
  xml.d :propfind, CS_NAMESPACES do
    xml.d :prop do
      xml.cs :objectOwner
    end
  end
end