Class: Exchanger::ExpandDL::Response

Inherits:
Operation::Response show all
Defined in:
lib/exchanger/operations/expand_dl.rb

Instance Attribute Summary

Attributes inherited from Operation::Response

#body, #status

Instance Method Summary collapse

Methods inherited from Operation::Response

#code, #initialize, #parse_response_message, #parse_soap_errors, #to_xml

Constructor Details

This class inherits a constructor from Exchanger::Operation::Response

Instance Method Details

#mailboxesObject



34
35
36
37
38
39
# File 'lib/exchanger/operations/expand_dl.rb', line 34

def mailboxes
  to_xml.xpath(".//t:Mailbox", NS).map do |node|
    item_klass = Exchanger.const_get(node.name)
    item_klass.new_from_xml(node)
  end
end