Class: Kaltura::KalturaPlayReadyCopyRight

Inherits:
KalturaPlayReadyRight show all
Defined in:
lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb

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

#copy_countObject

Returns the value of attribute copy_count.



281
282
283
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 281

def copy_count
  @copy_count
end

#copy_enablersObject

Returns the value of attribute copy_enablers.



282
283
284
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 282

def copy_enablers
  @copy_enablers
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



288
289
290
291
292
293
294
295
296
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 288

def from_xml(xml_element)
	super
	if xml_element.elements['copyCount'] != nil
		self.copy_count = xml_element.elements['copyCount'].text
	end
	if xml_element.elements['copyEnablers'] != nil
		self.copy_enablers = KalturaClientBase.object_from_xml(xml_element.elements['copyEnablers'], 'KalturaPlayReadyCopyEnablerHolder')
	end
end