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.



14081
14082
14083
# File 'lib/kaltura_types.rb', line 14081

def predefined_format
  @predefined_format
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14087
14088
14089
14090
14091
14092
# File 'lib/kaltura_types.rb', line 14087

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