Class: Kaltura::KalturaLiveEntryRecordingOptions

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Overview

A representation of a live stream recording entry configuration

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#non_deleted_cue_points_tagsObject

Returns the value of attribute non_deleted_cue_points_tags.



6181
6182
6183
# File 'lib/kaltura_types.rb', line 6181

def non_deleted_cue_points_tags
  @non_deleted_cue_points_tags
end

#should_auto_archiveObject

Returns the value of attribute should_auto_archive.



6180
6181
6182
# File 'lib/kaltura_types.rb', line 6180

def should_auto_archive
  @should_auto_archive
end

#should_copy_entitlementObject

Returns the value of attribute should_copy_entitlement.



6176
6177
6178
# File 'lib/kaltura_types.rb', line 6176

def should_copy_entitlement
  @should_copy_entitlement
end

#should_copy_schedulingObject

Returns the value of attribute should_copy_scheduling.



6177
6178
6179
# File 'lib/kaltura_types.rb', line 6177

def should_copy_scheduling
  @should_copy_scheduling
end

#should_copy_thumbnailObject

Returns the value of attribute should_copy_thumbnail.



6178
6179
6180
# File 'lib/kaltura_types.rb', line 6178

def should_copy_thumbnail
  @should_copy_thumbnail
end

#should_make_hiddenObject

Returns the value of attribute should_make_hidden.



6179
6180
6181
# File 'lib/kaltura_types.rb', line 6179

def should_make_hidden
  @should_make_hidden
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
# File 'lib/kaltura_types.rb', line 6199

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
end