Class: Kaltura::KalturaLiveStreamBitrate

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

#bitrateObject

Returns the value of attribute bitrate.



3590
3591
3592
# File 'lib/kaltura_types.rb', line 3590

def bitrate
  @bitrate
end

#heightObject

Returns the value of attribute height.



3592
3593
3594
# File 'lib/kaltura_types.rb', line 3592

def height
  @height
end

#tagsObject

Returns the value of attribute tags.



3593
3594
3595
# File 'lib/kaltura_types.rb', line 3593

def tags
  @tags
end

#widthObject

Returns the value of attribute width.



3591
3592
3593
# File 'lib/kaltura_types.rb', line 3591

def width
  @width
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



3605
3606
3607
3608
3609
3610
3611
# File 'lib/kaltura_types.rb', line 3605

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