Class: Kaltura::KalturaDrmEntryContextPluginData

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

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#flavor_dataObject

For the uDRM we give the drm context data which is a json encoding of an array containing the uDRM data

for each flavor that is required from this getContextData request.


12327
12328
12329
# File 'lib/kaltura_types.rb', line 12327

def flavor_data
  @flavor_data
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12330
12331
12332
12333
12334
12335
# File 'lib/kaltura_types.rb', line 12330

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