Class: Kaltura::KalturaLiveEntryServerNode

Inherits:
KalturaEntryServerNode show all
Defined in:
lib/kaltura_types.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

#is_playable_userObject

Returns the value of attribute is_playable_user.



14113
14114
14115
# File 'lib/kaltura_types.rb', line 14113

def is_playable_user
  @is_playable_user
end

#recording_infoObject

Returns the value of attribute recording_info.



14112
14113
14114
# File 'lib/kaltura_types.rb', line 14112

def recording_info
  @recording_info
end

#streamsObject

parameters of the stream we got



14111
14112
14113
# File 'lib/kaltura_types.rb', line 14111

def streams
  @streams
end

#view_modeObject

Returns the value of attribute view_mode.



14114
14115
14116
# File 'lib/kaltura_types.rb', line 14114

def view_mode
  @view_mode
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



14123
14124
14125
14126
14127
14128
14129
14130
14131
14132
14133
14134
14135
14136
14137
# File 'lib/kaltura_types.rb', line 14123

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