Class: Kaltura::KalturaStreamContainer
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaStreamContainer
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#channel_index ⇒ Object
Returns the value of attribute channel_index.
-
#channel_layout ⇒ Object
Returns the value of attribute channel_layout.
-
#id ⇒ Object
Returns the value of attribute id.
-
#label ⇒ Object
Returns the value of attribute label.
-
#language ⇒ Object
Returns the value of attribute language.
-
#track_index ⇒ Object
Returns the value of attribute track_index.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#channel_index ⇒ Object
Returns the value of attribute channel_index.
4665 4666 4667 |
# File 'lib/kaltura_types.rb', line 4665 def channel_index @channel_index end |
#channel_layout ⇒ Object
Returns the value of attribute channel_layout.
4667 4668 4669 |
# File 'lib/kaltura_types.rb', line 4667 def channel_layout @channel_layout end |
#id ⇒ Object
Returns the value of attribute id.
4661 4662 4663 |
# File 'lib/kaltura_types.rb', line 4661 def id @id end |
#label ⇒ Object
Returns the value of attribute label.
4666 4667 4668 |
# File 'lib/kaltura_types.rb', line 4666 def label @label end |
#language ⇒ Object
Returns the value of attribute language.
4664 4665 4666 |
# File 'lib/kaltura_types.rb', line 4664 def language @language end |
#track_index ⇒ Object
Returns the value of attribute track_index.
4663 4664 4665 |
# File 'lib/kaltura_types.rb', line 4663 def track_index @track_index end |
#type ⇒ Object
Returns the value of attribute type.
4662 4663 4664 |
# File 'lib/kaltura_types.rb', line 4662 def type @type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 |
# File 'lib/kaltura_types.rb', line 4676 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end 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 |