Class: Kaltura::KalturaDistributionThumbDimensions
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaDistributionThumbDimensions
- Defined in:
- lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb
Instance Attribute Summary collapse
-
#height ⇒ Object
Returns the value of attribute height.
-
#width ⇒ Object
Returns the value of attribute width.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#height ⇒ Object
Returns the value of attribute height.
322 323 324 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 322 def height @height end |
#width ⇒ Object
Returns the value of attribute width.
321 322 323 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 321 def width @width end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
331 332 333 334 335 336 337 338 339 |
# File 'lib/kaltura_plugins/kaltura_content_distribution_client_plugin.rb', line 331 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 |