class Kaltura::KalturaLiveEntryFilter

Attributes

has_media_server_hostname[RW]
is_live[RW]
is_recorded_entry_id_empty[RW]

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 20281
def from_xml(xml_element)
        super
        if xml_element.elements['isLive'] != nil
                self.is_live = xml_element.elements['isLive'].text
        end
        if xml_element.elements['isRecordedEntryIdEmpty'] != nil
                self.is_recorded_entry_id_empty = xml_element.elements['isRecordedEntryIdEmpty'].text
        end
        if xml_element.elements['hasMediaServerHostname'] != nil
                self.has_media_server_hostname = xml_element.elements['hasMediaServerHostname'].text
        end
end
is_live=(val) click to toggle source
# File lib/kaltura_types.rb, line 20274
def is_live=(val)
        @is_live = val.to_i
end
is_recorded_entry_id_empty=(val) click to toggle source
# File lib/kaltura_types.rb, line 20277
def is_recorded_entry_id_empty=(val)
        @is_recorded_entry_id_empty = val.to_i
end