Class: Kaltura::KalturaLiveEntryRecordingOptions
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaLiveEntryRecordingOptions
- Defined in:
- lib/kaltura_types.rb
Overview
A representation of a live stream recording entry configuration
Instance Attribute Summary collapse
-
#archive_vod_suffix_timezone ⇒ Object
Returns the value of attribute archive_vod_suffix_timezone.
-
#non_deleted_cue_points_tags ⇒ Object
Returns the value of attribute non_deleted_cue_points_tags.
-
#should_auto_archive ⇒ Object
Returns the value of attribute should_auto_archive.
-
#should_copy_entitlement ⇒ Object
Returns the value of attribute should_copy_entitlement.
-
#should_copy_scheduling ⇒ Object
Returns the value of attribute should_copy_scheduling.
-
#should_copy_thumbnail ⇒ Object
Returns the value of attribute should_copy_thumbnail.
-
#should_make_hidden ⇒ Object
Returns the value of attribute should_make_hidden.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#archive_vod_suffix_timezone ⇒ Object
Returns the value of attribute archive_vod_suffix_timezone.
6369 6370 6371 |
# File 'lib/kaltura_types.rb', line 6369 def archive_vod_suffix_timezone @archive_vod_suffix_timezone end |
#non_deleted_cue_points_tags ⇒ Object
Returns the value of attribute non_deleted_cue_points_tags.
6368 6369 6370 |
# File 'lib/kaltura_types.rb', line 6368 def end |
#should_auto_archive ⇒ Object
Returns the value of attribute should_auto_archive.
6367 6368 6369 |
# File 'lib/kaltura_types.rb', line 6367 def should_auto_archive @should_auto_archive end |
#should_copy_entitlement ⇒ Object
Returns the value of attribute should_copy_entitlement.
6363 6364 6365 |
# File 'lib/kaltura_types.rb', line 6363 def should_copy_entitlement @should_copy_entitlement end |
#should_copy_scheduling ⇒ Object
Returns the value of attribute should_copy_scheduling.
6364 6365 6366 |
# File 'lib/kaltura_types.rb', line 6364 def should_copy_scheduling @should_copy_scheduling end |
#should_copy_thumbnail ⇒ Object
Returns the value of attribute should_copy_thumbnail.
6365 6366 6367 |
# File 'lib/kaltura_types.rb', line 6365 def should_copy_thumbnail @should_copy_thumbnail end |
#should_make_hidden ⇒ Object
Returns the value of attribute should_make_hidden.
6366 6367 6368 |
# File 'lib/kaltura_types.rb', line 6366 def should_make_hidden @should_make_hidden end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 |
# File 'lib/kaltura_types.rb', line 6387 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. = xml_element.elements['nonDeletedCuePointsTags'].text end if xml_element.elements['archiveVodSuffixTimezone'] != nil self.archive_vod_suffix_timezone = xml_element.elements['archiveVodSuffixTimezone'].text end end |