Class: Kaltura::KalturaDistributionThumbDimensions

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

#heightObject

Returns the value of attribute height.



316
317
318
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 316

def height
  @height
end

#widthObject

Returns the value of attribute width.



315
316
317
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 315

def width
  @width
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



325
326
327
328
329
330
331
332
333
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 325

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