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
2959 2960 2961 |
# File 'lib/kaltura_types.rb', line 2959 def data @data end |
#url ⇒ Object
The URL where the notification should be sent to
2957 2958 2959 |
# File 'lib/kaltura_types.rb', line 2957 def url @url end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
2962 2963 2964 2965 2966 2967 2968 2969 2970 |
# File 'lib/kaltura_types.rb', line 2962 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 |