class Kaltura::KalturaClientNotification

Client notification object to hold the notification url and the data when sending client side notifications

Attributes

data[RW]

The serialized notification data to send

url[RW]

The URL where the notification should be sent to

Public Instance Methods

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