Class: Kaltura::KalturaConferenceEntryServerNode
- Inherits:
-
KalturaEntryServerNode
- Object
- KalturaObjectBase
- KalturaEntryServerNode
- Kaltura::KalturaConferenceEntryServerNode
- Defined in:
- lib/kaltura_plugins/kaltura_conference_client_plugin.rb
Instance Attribute Summary collapse
-
#conf_room_status ⇒ Object
Returns the value of attribute conf_room_status.
-
#registered ⇒ Object
Returns the value of attribute registered.
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
Instance Attribute Details
#conf_room_status ⇒ Object
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 |
#registered ⇒ Object
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 |