class Kaltura::KalturaLiveEntryRecordingOptions
A representation of a live stream recording entry configuration
Attributes
archive_vod_suffix_timezone[RW]
should_auto_archive[RW]
should_copy_entitlement[RW]
should_copy_scheduling[RW]
should_copy_thumbnail[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 6356 def from_xml(xml_element) super if xml_element.elements['shouldCopyEntitlement'] != nil self.should_copy_entitlement = xml_element.elements['shouldCopyEntitlement'].text end if xml_element.elements['shouldCopyScheduling'] != nil self.should_copy_scheduling = xml_element.elements['shouldCopyScheduling'].text end if xml_element.elements['shouldCopyThumbnail'] != nil self.should_copy_thumbnail = xml_element.elements['shouldCopyThumbnail'].text end if xml_element.elements['shouldMakeHidden'] != nil self.should_make_hidden = xml_element.elements['shouldMakeHidden'].text end if xml_element.elements['shouldAutoArchive'] != nil self.should_auto_archive = xml_element.elements['shouldAutoArchive'].text end if xml_element.elements['nonDeletedCuePointsTags'] != nil self.non_deleted_cue_points_tags = xml_element.elements['nonDeletedCuePointsTags'].text end if xml_element.elements['archiveVodSuffixTimezone'] != nil self.archive_vod_suffix_timezone = xml_element.elements['archiveVodSuffixTimezone'].text end end
should_auto_archive=(val)
click to toggle source
# File lib/kaltura_types.rb, line 6352 def should_auto_archive=(val) @should_auto_archive = val.to_i end
should_copy_entitlement=(val)
click to toggle source
# File lib/kaltura_types.rb, line 6340 def should_copy_entitlement=(val) @should_copy_entitlement = val.to_i end
should_copy_scheduling=(val)
click to toggle source
# File lib/kaltura_types.rb, line 6343 def should_copy_scheduling=(val) @should_copy_scheduling = val.to_i end
should_copy_thumbnail=(val)
click to toggle source
# File lib/kaltura_types.rb, line 6346 def should_copy_thumbnail=(val) @should_copy_thumbnail = val.to_i end