class Kaltura::KalturaLiveEntryServerNodeRecordingInfo

Attributes

duration[RW]
recorded_entry_id[RW]
recording_status[RW]

Public Instance Methods

duration=(val) click to toggle source
# File lib/kaltura_types.rb, line 6663
def duration=(val)
        @duration = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 6670
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
recording_status=(val) click to toggle source
# File lib/kaltura_types.rb, line 6666
def recording_status=(val)
        @recording_status = val.to_i
end