Class: Kaltura::KalturaEntryContextDataParams
- Inherits:
-
KalturaAccessControlScope
- Object
- KalturaObjectBase
- KalturaAccessControlScope
- Kaltura::KalturaEntryContextDataParams
- Defined in:
- lib/kaltura_types.rb
Overview
Object which contains contextual entry-related data.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#flavor_asset_id ⇒ Object
Id of the current flavor.
-
#flavor_tags ⇒ Object
The tags of the flavors that should be used for playback.
-
#media_protocol ⇒ Object
Protocol of the specific media object.
-
#streamer_type ⇒ Object
Playback streamer type: RTMP, HTTP, appleHttps, rtsp, sl.
Attributes inherited from KalturaAccessControlScope
#contexts, #hashes, #ip, #ks, #referrer, #time, #user_agent
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#flavor_asset_id ⇒ Object
Id of the current flavor.
13453 13454 13455 |
# File 'lib/kaltura_types.rb', line 13453 def flavor_asset_id @flavor_asset_id end |
#flavor_tags ⇒ Object
The tags of the flavors that should be used for playback.
13455 13456 13457 |
# File 'lib/kaltura_types.rb', line 13455 def @flavor_tags end |
#media_protocol ⇒ Object
Protocol of the specific media object.
13459 13460 13461 |
# File 'lib/kaltura_types.rb', line 13459 def media_protocol @media_protocol end |
#streamer_type ⇒ Object
Playback streamer type: RTMP, HTTP, appleHttps, rtsp, sl.
13457 13458 13459 |
# File 'lib/kaltura_types.rb', line 13457 def streamer_type @streamer_type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 |
# File 'lib/kaltura_types.rb', line 13462 def from_xml(xml_element) super if xml_element.elements['flavorAssetId'] != nil self.flavor_asset_id = xml_element.elements['flavorAssetId'].text end if xml_element.elements['flavorTags'] != nil self. = xml_element.elements['flavorTags'].text end if xml_element.elements['streamerType'] != nil self.streamer_type = xml_element.elements['streamerType'].text end if xml_element.elements['mediaProtocol'] != nil self.media_protocol = xml_element.elements['mediaProtocol'].text end end |