Class: Kaltura::KalturaEffect

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

Overview

Effects attributes

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

#effect_typeObject

Returns the value of attribute effect_type.



4148
4149
4150
# File 'lib/kaltura_types.rb', line 4148

def effect_type
  @effect_type
end

#valueObject

value



4150
4151
4152
# File 'lib/kaltura_types.rb', line 4150

def value
  @value
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4156
4157
4158
4159
4160
4161
4162
4163
4164
# File 'lib/kaltura_types.rb', line 4156

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