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.



286
287
288
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 286

def height
  @height
end

#widthObject

Returns the value of attribute width.



285
286
287
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 285

def width
  @width
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



295
296
297
298
299
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 295

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