class Kaltura::KalturaPlayReadyCopyRight
Attributes
copy_count[RW]
copy_enablers[RW]
Public Instance Methods
copy_count=(val)
click to toggle source
# File lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb, line 284 def copy_count=(val) @copy_count = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaPlayReadyRight#from_xml
# 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