class Kaltura::KalturaConferenceEntryServerNode
Attributes
conf_room_status[RW]
registered[RW]
Public Instance Methods
conf_room_status=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_conference_client_plugin.rb, line 83 def conf_room_status=(val) @conf_room_status = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
# 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
registered=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_conference_client_plugin.rb, line 86 def registered=(val) @registered = val.to_i end