Class: Kaltura::KalturaAssetPropertiesCompareCondition

Inherits:
KalturaCondition show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaCondition

#description, #not, #type

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#propertiesObject

Array of key/value objects that holds the property and the value to find and compare on an asset object



10568
10569
10570
# File 'lib/kaltura_types.rb', line 10568

def properties
  @properties
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



10571
10572
10573
10574
10575
10576
# File 'lib/kaltura_types.rb', line 10571

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