Class: Kaltura::KalturaConferenceEntryServerNode

Inherits:
KalturaEntryServerNode show all
Defined in:
lib/kaltura_plugins/kaltura_conference_client_plugin.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaEntryServerNode

#created_at, #entry_id, #id, #partner_id, #server_node_id, #server_type, #status, #updated_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#conf_room_statusObject

Returns the value of attribute conf_room_status.



80
81
82
# File 'lib/kaltura_plugins/kaltura_conference_client_plugin.rb', line 80

def conf_room_status
  @conf_room_status
end

#registeredObject

Returns the value of attribute registered.



81
82
83
# File 'lib/kaltura_plugins/kaltura_conference_client_plugin.rb', line 81

def registered
  @registered
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



90
91
92
93
94
95
96
97
98
# File 'lib/kaltura_plugins/kaltura_conference_client_plugin.rb', line 90

def from_xml(xml_element)
	super
	if xml_element.elements['confRoomStatus'] != nil
		self.conf_room_status = xml_element.elements['confRoomStatus'].text
	end
	if xml_element.elements['registered'] != nil
		self.registered = xml_element.elements['registered'].text
	end
end