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.



6435
6436
6437
# File 'lib/kaltura_types.rb', line 6435

def duration
  @duration
end

#recorded_entry_idObject

Returns the value of attribute recorded_entry_id.



6434
6435
6436
# File 'lib/kaltura_types.rb', line 6434

def recorded_entry_id
  @recorded_entry_id
end

#recording_statusObject

Returns the value of attribute recording_status.



6436
6437
6438
# File 'lib/kaltura_types.rb', line 6436

def recording_status
  @recording_status
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
# File 'lib/kaltura_types.rb', line 6445

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