Class: Kaltura::KalturaClientNotification
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaClientNotification
- Defined in:
- lib/kaltura_types.rb
Overview
Client notification object to hold the notification url and the data when sending client side notifications
Instance Attribute Summary collapse
-
#data ⇒ Object
The serialized notification data to send.
-
#url ⇒ Object
The URL where the notification should be sent to.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#data ⇒ Object
The serialized notification data to send
3022 3023 3024 |
# File 'lib/kaltura_types.rb', line 3022 def data @data end |
#url ⇒ Object
The URL where the notification should be sent to
3020 3021 3022 |
# File 'lib/kaltura_types.rb', line 3020 def url @url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
3025 3026 3027 3028 3029 3030 3031 3032 3033 |
# 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 |