class Kaltura::KalturaDrmEntryContextPluginData

Attributes

flavor_data[RW]

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.

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaPluginData#from_xml
# File lib/kaltura_types.rb, line 12872
def from_xml(xml_element)
        super
        if xml_element.elements['flavorData'] != nil
                self.flavor_data = xml_element.elements['flavorData'].text
        end
end