Class: Kaltura::KalturaLiveEntryServerNode
- Inherits:
-
KalturaEntryServerNode
- Object
- KalturaObjectBase
- KalturaEntryServerNode
- Kaltura::KalturaLiveEntryServerNode
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#is_playable_user ⇒ Object
Returns the value of attribute is_playable_user.
-
#recording_info ⇒ Object
Returns the value of attribute recording_info.
-
#streams ⇒ Object
parameters of the stream we got.
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
#is_playable_user ⇒ Object
Returns the value of attribute is_playable_user.
13767 13768 13769 |
# File 'lib/kaltura_types.rb', line 13767 def is_playable_user @is_playable_user end |
#recording_info ⇒ Object
Returns the value of attribute recording_info.
13766 13767 13768 |
# File 'lib/kaltura_types.rb', line 13766 def recording_info @recording_info end |
#streams ⇒ Object
parameters of the stream we got
13765 13766 13767 |
# File 'lib/kaltura_types.rb', line 13765 def streams @streams end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 |
# File 'lib/kaltura_types.rb', line 13773 def from_xml(xml_element) super if xml_element.elements['streams'] != nil self.streams = KalturaClientBase.object_from_xml(xml_element.elements['streams'], 'KalturaLiveStreamParams') end if xml_element.elements['recordingInfo'] != nil self.recording_info = KalturaClientBase.object_from_xml(xml_element.elements['recordingInfo'], 'KalturaLiveEntryServerNodeRecordingInfo') end if xml_element.elements['isPlayableUser'] != nil self.is_playable_user = xml_element.elements['isPlayableUser'].text end end |