Class: Kaltura::KalturaStreamContainer

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

#channel_indexObject

Returns the value of attribute channel_index.



4521
4522
4523
# File 'lib/kaltura_types.rb', line 4521

def channel_index
  @channel_index
end

#channel_layoutObject

Returns the value of attribute channel_layout.



4523
4524
4525
# File 'lib/kaltura_types.rb', line 4523

def channel_layout
  @channel_layout
end

#labelObject

Returns the value of attribute label.



4522
4523
4524
# File 'lib/kaltura_types.rb', line 4522

def label
  @label
end

#languageObject

Returns the value of attribute language.



4520
4521
4522
# File 'lib/kaltura_types.rb', line 4520

def language
  @language
end

#track_indexObject

Returns the value of attribute track_index.



4519
4520
4521
# File 'lib/kaltura_types.rb', line 4519

def track_index
  @track_index
end

#typeObject

Returns the value of attribute type.



4518
4519
4520
# File 'lib/kaltura_types.rb', line 4518

def type
  @type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
# File 'lib/kaltura_types.rb', line 4532

def from_xml(xml_element)
	super
	if xml_element.elements['type'] != nil
		self.type = xml_element.elements['type'].text
	end
	if xml_element.elements['trackIndex'] != nil
		self.track_index = xml_element.elements['trackIndex'].text
	end
	if xml_element.elements['language'] != nil
		self.language = xml_element.elements['language'].text
	end
	if xml_element.elements['channelIndex'] != nil
		self.channel_index = xml_element.elements['channelIndex'].text
	end
	if xml_element.elements['label'] != nil
		self.label = xml_element.elements['label'].text
	end
	if xml_element.elements['channelLayout'] != nil
		self.channel_layout = xml_element.elements['channelLayout'].text
	end
end