class Kaltura::KalturaEntryScheduleEvent
Attributes
blackout_conflicts[RW]
Blackout schedule events the conflict with this event
category_ids[RW]
Categories that associated with this event
entry_ids[RW]
Entries that associated with this event
template_entry_id[RW]
Entry to be used as template during content ingestion
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaScheduleEvent#from_xml
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 612 def from_xml(xml_element) super if xml_element.elements['templateEntryId'] != nil self.template_entry_id = xml_element.elements['templateEntryId'].text end if xml_element.elements['entryIds'] != nil self.entry_ids = xml_element.elements['entryIds'].text end if xml_element.elements['categoryIds'] != nil self.category_ids = xml_element.elements['categoryIds'].text end if xml_element.elements['blackoutConflicts'] != nil self.blackout_conflicts = KalturaClientBase.object_from_xml(xml_element.elements['blackoutConflicts'], 'KalturaScheduleEvent') end end