Class: Kaltura::KalturaAssetPropertiesCompareCondition
- Inherits:
-
KalturaCondition
- Object
- KalturaObjectBase
- KalturaCondition
- Kaltura::KalturaAssetPropertiesCompareCondition
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#properties ⇒ Object
Array of key/value objects that holds the property and the value to find and compare on an asset object.
Attributes inherited from KalturaCondition
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#properties ⇒ Object
Array of key/value objects that holds the property and the value to find and compare on an asset object
11237 11238 11239 |
# File 'lib/kaltura_types.rb', line 11237 def properties @properties end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
11240 11241 11242 11243 11244 11245 |
# File 'lib/kaltura_types.rb', line 11240 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 |