Class: SabredavClient::XmlRequestBuilder::PropfindOwner

Inherits:
Base
  • Object
show all
Defined in:
lib/sabredav_client/xml_request_builder/propfind_owner.rb

Instance Attribute Summary

Attributes inherited from Base

#xml

Instance Method Summary collapse

Constructor Details

#initializePropfindOwner

Returns a new instance of PropfindOwner.



6
7
8
# File 'lib/sabredav_client/xml_request_builder/propfind_owner.rb', line 6

def initialize
  super()
end

Instance Method Details

#to_xmlObject



10
11
12
13
14
15
16
# 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