Class: Kaltura::KalturaEntryContext
- Inherits:
-
KalturaContext
- Object
- KalturaObjectBase
- KalturaContext
- Kaltura::KalturaEntryContext
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#entry_id ⇒ Object
The entry ID in the context of which the playlist should be built.
-
#follow_entry_redirect ⇒ Object
Is this a redirected entry followup?.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#entry_id ⇒ Object
The entry ID in the context of which the playlist should be built
13238 13239 13240 |
# File 'lib/kaltura_types.rb', line 13238 def entry_id @entry_id end |
#follow_entry_redirect ⇒ Object
Is this a redirected entry followup?
13240 13241 13242 |
# File 'lib/kaltura_types.rb', line 13240 def follow_entry_redirect @follow_entry_redirect end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13246 13247 13248 13249 13250 13251 13252 13253 13254 |
# File 'lib/kaltura_types.rb', line 13246 def from_xml(xml_element) super if xml_element.elements['entryId'] != nil self.entry_id = xml_element.elements['entryId'].text end if xml_element.elements['followEntryRedirect'] != nil self.follow_entry_redirect = xml_element.elements['followEntryRedirect'].text end end |