class Kaltura::KalturaEntryContext

Attributes

entry_id[RW]

The entry ID in the context of which the playlist should be built

follow_entry_redirect[RW]

Is this a redirected entry followup?

Public Instance Methods

follow_entry_redirect=(val) click to toggle source
# File lib/kaltura_types.rb, line 13200
def follow_entry_redirect=(val)
        @follow_entry_redirect = val.to_i
end
from_xml(xml_element) click to toggle source
Calls superclass method Kaltura::KalturaContext#from_xml
# File lib/kaltura_types.rb, line 13204
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