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.
-
#view_mode ⇒ Object
Returns the value of attribute view_mode.
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.
14029 14030 14031 |
# File 'lib/kaltura_types.rb', line 14029 def is_playable_user @is_playable_user end |
#recording_info ⇒ Object
Returns the value of attribute recording_info.
14028 14029 14030 |
# File 'lib/kaltura_types.rb', line 14028 def recording_info @recording_info end |
#streams ⇒ Object
parameters of the stream we got
14027 14028 14029 |
# File 'lib/kaltura_types.rb', line 14027 def streams @streams end |
#view_mode ⇒ Object
Returns the value of attribute view_mode.
14030 14031 14032 |
# File 'lib/kaltura_types.rb', line 14030 def view_mode @view_mode end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 |
# File 'lib/kaltura_types.rb', line 14039 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 if xml_element.elements['viewMode'] != nil self.view_mode = xml_element.elements['viewMode'].text end end |