class DynamicsCRM::Metadata::RetrieveAttributeResponse
Retrieve Attribute returns a single AttributeMetadata
.
Attributes
attribute[R]
Public Class Methods
new(xml)
click to toggle source
Calls superclass method
# File lib/dynamics_crm/metadata/retrieve_attribute_response.rb, line 7 def initialize(xml) super # Single KeyValuePair containing 1 value type of AttributeMetadata @attribute = AttributeMetadata.new(self.delete("AttributeMetadata")) end