Class: Kaltura::KalturaPlaybackContext
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaPlaybackContext
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#actions ⇒ Object
Array of actions as received from the rules that invalidated.
-
#flavor_assets ⇒ Object
Returns the value of attribute flavor_assets.
-
#messages ⇒ Object
Array of actions as received from the rules that invalidated.
-
#playback_captions ⇒ Object
Returns the value of attribute playback_captions.
-
#sources ⇒ Object
Returns the value of attribute sources.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#actions ⇒ Object
Array of actions as received from the rules that invalidated
8029 8030 8031 |
# File 'lib/kaltura_types.rb', line 8029 def actions @actions end |
#flavor_assets ⇒ Object
Returns the value of attribute flavor_assets.
8027 8028 8029 |
# File 'lib/kaltura_types.rb', line 8027 def flavor_assets @flavor_assets end |
#messages ⇒ Object
Array of actions as received from the rules that invalidated
8031 8032 8033 |
# File 'lib/kaltura_types.rb', line 8031 def @messages end |
#playback_captions ⇒ Object
Returns the value of attribute playback_captions.
8026 8027 8028 |
# File 'lib/kaltura_types.rb', line 8026 def playback_captions @playback_captions end |
#sources ⇒ Object
Returns the value of attribute sources.
8025 8026 8027 |
# File 'lib/kaltura_types.rb', line 8025 def sources @sources end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 |
# File 'lib/kaltura_types.rb', line 8034 def from_xml(xml_element) super if xml_element.elements['sources'] != nil self.sources = KalturaClientBase.object_from_xml(xml_element.elements['sources'], 'KalturaPlaybackSource') end if xml_element.elements['playbackCaptions'] != nil self.playback_captions = KalturaClientBase.object_from_xml(xml_element.elements['playbackCaptions'], 'KalturaCaptionPlaybackPluginData') end if xml_element.elements['flavorAssets'] != nil self.flavor_assets = KalturaClientBase.object_from_xml(xml_element.elements['flavorAssets'], 'KalturaFlavorAsset') end if xml_element.elements['actions'] != nil self.actions = KalturaClientBase.object_from_xml(xml_element.elements['actions'], 'KalturaRuleAction') end if xml_element.elements['messages'] != nil self. = KalturaClientBase.object_from_xml(xml_element.elements['messages'], 'KalturaAccessControlMessage') end end |