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
-
#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
#should_copy_entitlement ⇒ Object
Returns the value of attribute should_copy_entitlement.
6126 6127 6128 |
# File 'lib/kaltura_types.rb', line 6126 def should_copy_entitlement @should_copy_entitlement end |
#should_copy_scheduling ⇒ Object
Returns the value of attribute should_copy_scheduling.
6127 6128 6129 |
# File 'lib/kaltura_types.rb', line 6127 def should_copy_scheduling @should_copy_scheduling end |
#should_copy_thumbnail ⇒ Object
Returns the value of attribute should_copy_thumbnail.
6128 6129 6130 |
# File 'lib/kaltura_types.rb', line 6128 def should_copy_thumbnail @should_copy_thumbnail end |
#should_make_hidden ⇒ Object
Returns the value of attribute should_make_hidden.
6129 6130 6131 |
# File 'lib/kaltura_types.rb', line 6129 def should_make_hidden @should_make_hidden end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 |
# File 'lib/kaltura_types.rb', line 6144 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 end |