Class: Kaltura::KalturaLiveEntryServerNodeRecordingInfo

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#durationObject

Returns the value of attribute duration.



6691
6692
6693
# File 'lib/kaltura_types.rb', line 6691

def duration
  @duration
end

#recorded_entry_idObject

Returns the value of attribute recorded_entry_id.



6690
6691
6692
# File 'lib/kaltura_types.rb', line 6690

def recorded_entry_id
  @recorded_entry_id
end

#recording_statusObject

Returns the value of attribute recording_status.



6692
6693
6694
# File 'lib/kaltura_types.rb', line 6692

def recording_status
  @recording_status
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
# File 'lib/kaltura_types.rb', line 6701

def from_xml(xml_element)
	super
	if xml_element.elements['recordedEntryId'] != nil
		self.recorded_entry_id = xml_element.elements['recordedEntryId'].text
	end
	if xml_element.elements['duration'] != nil
		self.duration = xml_element.elements['duration'].text
	end
	if xml_element.elements['recordingStatus'] != nil
		self.recording_status = xml_element.elements['recordingStatus'].text
	end
end