class Kaltura::KalturaPlayReadyContentKey

Attributes

content_key[RW]

License content key 64 bit encoded

key_id[RW]

Guid - key id of the specific content

Public Instance Methods

from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 138
def from_xml(xml_element)
        super
        if xml_element.elements['keyId'] != nil
                self.key_id = xml_element.elements['keyId'].text
        end
        if xml_element.elements['contentKey'] != nil
                self.content_key = xml_element.elements['contentKey'].text
        end
end