Class: Kaltura::KalturaCategoryEntryAdvancedFilter

Inherits:
KalturaSearchItem show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#categories_match_orObject

Returns the value of attribute categories_match_or.



11358
11359
11360
# File 'lib/kaltura_types.rb', line 11358

def categories_match_or
  @categories_match_or
end

#category_entry_status_inObject

Returns the value of attribute category_entry_status_in.



11359
11360
11361
# File 'lib/kaltura_types.rb', line 11359

def category_entry_status_in
  @category_entry_status_in
end

#category_id_equalObject

Returns the value of attribute category_id_equal.



11361
11362
11363
# File 'lib/kaltura_types.rb', line 11361

def category_id_equal
  @category_id_equal
end

#order_byObject

Returns the value of attribute order_by.



11360
11361
11362
# File 'lib/kaltura_types.rb', line 11360

def order_by
  @order_by
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11367
11368
11369
11370
11371
11372
11373
11374
11375
11376
11377
11378
11379
11380
11381
# File 'lib/kaltura_types.rb', line 11367

def from_xml(xml_element)
	super
	if xml_element.elements['categoriesMatchOr'] != nil
		self.categories_match_or = xml_element.elements['categoriesMatchOr'].text
	end
	if xml_element.elements['categoryEntryStatusIn'] != nil
		self.category_entry_status_in = xml_element.elements['categoryEntryStatusIn'].text
	end
	if xml_element.elements['orderBy'] != nil
		self.order_by = xml_element.elements['orderBy'].text
	end
	if xml_element.elements['categoryIdEqual'] != nil
		self.category_id_equal = xml_element.elements['categoryIdEqual'].text
	end
end