Class: Kaltura::KalturaPushEventNotificationParameter

Inherits:
KalturaEventNotificationParameter show all
Defined in:
lib/kaltura_plugins/kaltura_push_notification_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaEventNotificationParameter

#description, #key, #value

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#queue_key_tokenObject

Returns the value of attribute queue_key_token.



47
48
49
# File 'lib/kaltura_plugins/kaltura_push_notification_client_plugin.rb', line 47

def queue_key_token
  @queue_key_token
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



50
51
52
53
54
55
# File 'lib/kaltura_plugins/kaltura_push_notification_client_plugin.rb', line 50

def from_xml(xml_element)
	super
	if xml_element.elements['queueKeyToken'] != nil
		self.queue_key_token = xml_element.elements['queueKeyToken'].text
	end
end