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.
6481 6482 6483 |
# File 'lib/kaltura_types.rb', line 6481 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.
6480 6481 6482 |
# File 'lib/kaltura_types.rb', line 6480 def @non_deleted_cue_points_tags end |
#should_auto_archive ⇒ Object
Returns the value of attribute should_auto_archive.
6479 6480 6481 |
# File 'lib/kaltura_types.rb', line 6479 def should_auto_archive @should_auto_archive end |
#should_copy_entitlement ⇒ Object
Returns the value of attribute should_copy_entitlement.
6475 6476 6477 |
# File 'lib/kaltura_types.rb', line 6475 def should_copy_entitlement @should_copy_entitlement end |
#should_copy_scheduling ⇒ Object
Returns the value of attribute should_copy_scheduling.
6476 6477 6478 |
# File 'lib/kaltura_types.rb', line 6476 def should_copy_scheduling @should_copy_scheduling end |
#should_copy_thumbnail ⇒ Object
Returns the value of attribute should_copy_thumbnail.
6477 6478 6479 |
# File 'lib/kaltura_types.rb', line 6477 def should_copy_thumbnail @should_copy_thumbnail end |
#should_make_hidden ⇒ Object
Returns the value of attribute should_make_hidden.
6478 6479 6480 |
# File 'lib/kaltura_types.rb', line 6478 def should_make_hidden @should_make_hidden end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 |
# File 'lib/kaltura_types.rb', line 6499 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 |