Method: SOAP::Mapping.get_attributes_for_any
- Defined in:
- lib/soap/mapping/mapping.rb
.get_attributes_for_any(obj) ⇒ Object
295 296 297 298 299 300 301 |
# File 'lib/soap/mapping/mapping.rb', line 295 def self.get_attributes_for_any(obj) if obj.respond_to?(:__xmlele_any) obj.__xmlele_any || EMPTY_ATTRIBUTES else get_attributes(obj) end end |