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.



14041
14042
14043
# File 'lib/kaltura_types.rb', line 14041

def predefined_format
  @predefined_format
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14047
14048
14049
14050
14051
14052
# File 'lib/kaltura_types.rb', line 14047

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