class Kaltura::KalturaAssetPropertiesCompareCondition
Attributes
properties[RW]
Array of key/value objects that holds the property and the value to find and compare on an asset object
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaCondition#from_xml
# File lib/kaltura_types.rb, line 11017 def from_xml(xml_element) super if xml_element.elements['properties'] != nil self.properties = KalturaClientBase.object_from_xml(xml_element.elements['properties'], 'KalturaKeyValue') end end