Class: Kaltura::KalturaPlayReadyDigitalAudioOPIdHolder

Inherits:
KalturaObjectBase 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

#typeObject

The type of the play enabler



166
167
168
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 166

def type
  @type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



169
170
171
172
173
174
# File 'lib/kaltura_plugins/kaltura_play_ready_client_plugin.rb', line 169

def from_xml(xml_element)
	super
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
end