Class: Kaltura::KalturaConversionAttribute

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.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

#flavor_params_idObject

The id of the flavor params, set to null for source flavor



3266
3267
3268
# File 'lib/kaltura_types.rb', line 3266

def flavor_params_id
  @flavor_params_id
end

#nameObject

Attribute name



3268
3269
3270
# File 'lib/kaltura_types.rb', line 3268

def name
  @name
end

#valueObject

Attribute value



3270
3271
3272
# File 'lib/kaltura_types.rb', line 3270

def value
  @value
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
# File 'lib/kaltura_types.rb', line 3276

def from_xml(xml_element)
	super
	if xml_element.elements['flavorParamsId'] != nil
		self.flavor_params_id = xml_element.elements['flavorParamsId'].text
	end
	if xml_element.elements['name'] != nil
		self.name = xml_element.elements['name'].text
	end
	if xml_element.elements['value'] != nil
		self.value = xml_element.elements['value'].text
	end
end