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

#should_copy_entitlementObject

Returns the value of attribute should_copy_entitlement.



6130
6131
6132
# File 'lib/kaltura_types.rb', line 6130

def should_copy_entitlement
  @should_copy_entitlement
end

#should_copy_schedulingObject

Returns the value of attribute should_copy_scheduling.



6131
6132
6133
# File 'lib/kaltura_types.rb', line 6131

def should_copy_scheduling
  @should_copy_scheduling
end

#should_copy_thumbnailObject

Returns the value of attribute should_copy_thumbnail.



6132
6133
6134
# File 'lib/kaltura_types.rb', line 6132

def should_copy_thumbnail
  @should_copy_thumbnail
end

#should_make_hiddenObject

Returns the value of attribute should_make_hidden.



6133
6134
6135
# File 'lib/kaltura_types.rb', line 6133

def should_make_hidden
  @should_make_hidden
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
# File 'lib/kaltura_types.rb', line 6148

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