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.



14029
14030
14031
# File 'lib/kaltura_types.rb', line 14029

def predefined_format
  @predefined_format
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14035
14036
14037
14038
14039
14040
# File 'lib/kaltura_types.rb', line 14035

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