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.
4732 4733 4734 |
# File 'lib/kaltura_types.rb', line 4732 def channel_index @channel_index end |
#channel_layout ⇒ Object
Returns the value of attribute channel_layout.
4734 4735 4736 |
# File 'lib/kaltura_types.rb', line 4734 def channel_layout @channel_layout end |
#id ⇒ Object
Returns the value of attribute id.
4728 4729 4730 |
# File 'lib/kaltura_types.rb', line 4728 def id @id end |
#label ⇒ Object
Returns the value of attribute label.
4733 4734 4735 |
# File 'lib/kaltura_types.rb', line 4733 def label @label end |
#language ⇒ Object
Returns the value of attribute language.
4731 4732 4733 |
# File 'lib/kaltura_types.rb', line 4731 def language @language end |
#track_index ⇒ Object
Returns the value of attribute track_index.
4730 4731 4732 |
# File 'lib/kaltura_types.rb', line 4730 def track_index @track_index end |
#type ⇒ Object
Returns the value of attribute type.
4729 4730 4731 |
# File 'lib/kaltura_types.rb', line 4729 def type @type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 |
# File 'lib/kaltura_types.rb', line 4743 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 |