class DynamicsCRM::Metadata::RetrieveEntityResponse
RetrieveEntity returns a single EntityMetadata
element.
Attributes
attributes[R]
entity[R]
Public Class Methods
new(xml)
click to toggle source
Calls superclass method
# File lib/dynamics_crm/metadata/retrieve_entity_response.rb, line 8 def initialize(xml) super # Single KeyValuePair containing 1 value type of EntityMetadata @entity = EntityMetadata.new(self["EntityMetadata"]) end