class Kaltura::KalturaEntryScheduleEventFilter
Attributes
parent_category_ids_like[RW]
parent_category_ids_multi_like_and[RW]
parent_category_ids_multi_like_or[RW]
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaEntryScheduleEventBaseFilter#from_xml
# File lib/kaltura_plugins/kaltura_schedule_client_plugin.rb, line 1271 def from_xml(xml_element) super if xml_element.elements['parentCategoryIdsLike'] != nil self.parent_category_ids_like = xml_element.elements['parentCategoryIdsLike'].text end if xml_element.elements['parentCategoryIdsMultiLikeOr'] != nil self.parent_category_ids_multi_like_or = xml_element.elements['parentCategoryIdsMultiLikeOr'].text end if xml_element.elements['parentCategoryIdsMultiLikeAnd'] != nil self.parent_category_ids_multi_like_and = xml_element.elements['parentCategoryIdsMultiLikeAnd'].text end end