Class: Kaltura::KalturaKeyValueExtended

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

Instance Attribute Summary collapse

Attributes inherited from KalturaKeyValue

#key, #value

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#predefined_formatObject

Returns the value of attribute predefined_format.



14115
14116
14117
# File 'lib/kaltura_types.rb', line 14115

def predefined_format
  @predefined_format
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14121
14122
14123
14124
14125
14126
# File 'lib/kaltura_types.rb', line 14121

def from_xml(xml_element)
	super
	if xml_element.elements['predefinedFormat'] != nil
		self.predefined_format = xml_element.elements['predefinedFormat'].text
	end
end